fix: remove unnecessary class from Button component in TaskModal and add click.stop to Notes dropdown
(cherry picked from commit 30d95a6582cf8d5ba8e06e6d94e78b54c82e57a3)
This commit is contained in:
parent
b82dc0473a
commit
cfeac13c9c
@ -47,7 +47,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="flex flex-wrap items-center gap-2">
|
<div class="flex flex-wrap items-center gap-2">
|
||||||
<Dropdown :options="taskStatusOptions(updateTaskStatus)">
|
<Dropdown :options="taskStatusOptions(updateTaskStatus)">
|
||||||
<Button :label="_task.status" class="justify-between w-full">
|
<Button :label="_task.status">
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<TaskStatusIcon :status="_task.status" />
|
<TaskStatusIcon :status="_task.status" />
|
||||||
</template>
|
</template>
|
||||||
@ -88,7 +88,7 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<Dropdown :options="taskPriorityOptions(updateTaskPriority)">
|
<Dropdown :options="taskPriorityOptions(updateTaskPriority)">
|
||||||
<Button :label="_task.priority" class="justify-between w-full">
|
<Button :label="_task.priority">
|
||||||
<template #prefix>
|
<template #prefix>
|
||||||
<TaskPriorityIcon :priority="_task.priority" />
|
<TaskPriorityIcon :priority="_task.priority" />
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@ -45,12 +45,12 @@
|
|||||||
onClick: () => deleteNote(note.name),
|
onClick: () => deleteNote(note.name),
|
||||||
},
|
},
|
||||||
]"
|
]"
|
||||||
@click.stop
|
|
||||||
>
|
>
|
||||||
<Button
|
<Button
|
||||||
icon="more-horizontal"
|
icon="more-horizontal"
|
||||||
variant="ghosted"
|
variant="ghosted"
|
||||||
class="hover:bg-surface-white"
|
class="hover:bg-surface-white"
|
||||||
|
@click.stop
|
||||||
/>
|
/>
|
||||||
</Dropdown>
|
</Dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user