fix: selecting text with mouse closes modal - fixed #2195
This commit is contained in:
@@ -1,5 +1,10 @@
|
||||
<template>
|
||||
<SmartModal v-if="show" :title="`${$t('collection.new')}`" @close="hideModal">
|
||||
<SmartModal
|
||||
v-if="show"
|
||||
dialog
|
||||
:title="`${$t('collection.new')}`"
|
||||
@close="hideModal"
|
||||
>
|
||||
<template #body>
|
||||
<div class="flex flex-col px-2">
|
||||
<input
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<SmartModal
|
||||
v-if="show"
|
||||
dialog
|
||||
:title="$t('folder.new')"
|
||||
@close="$emit('hide-modal')"
|
||||
>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<SmartModal
|
||||
v-if="show"
|
||||
dialog
|
||||
:title="`${$t('collection.edit')}`"
|
||||
@close="hideModal"
|
||||
>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<SmartModal
|
||||
v-if="show"
|
||||
dialog
|
||||
:title="`${$t('folder.edit')}`"
|
||||
@close="$emit('hide-modal')"
|
||||
>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
<template>
|
||||
<SmartModal
|
||||
v-if="show"
|
||||
dialog
|
||||
:title="`${$t('modal.edit_request')}`"
|
||||
@close="hideModal"
|
||||
>
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<template>
|
||||
<SmartModal
|
||||
v-if="show"
|
||||
dialog
|
||||
:title="`${t('modal.collections')}`"
|
||||
max-width="sm:max-w-md"
|
||||
dialog
|
||||
@close="hideModal"
|
||||
>
|
||||
<template #actions>
|
||||
|
||||
Reference in New Issue
Block a user