fix: prevent labels from being clickable in selection contexts
- Set clickable=false for labels in QuickActions modal - Set clickable=false for labels in FilterCommandsList autocomplete - This prevents navigation conflicts when labels are shown in interactive components Co-authored-by: kolaente <13721712+kolaente@users.noreply.github.com>
This commit is contained in:
parent
c16ca20db5
commit
8013f0e51a
|
|
@ -12,6 +12,7 @@
|
|||
<XLabel
|
||||
v-if="item.fieldType === 'labels'"
|
||||
:label="(item.item as unknown as ILabel)"
|
||||
:clickable="false"
|
||||
class="filter-autocomplete__label"
|
||||
/>
|
||||
<User
|
||||
|
|
|
|||
|
|
@ -71,7 +71,10 @@
|
|||
@keyup.prevent.esc="searchInput?.focus()"
|
||||
>
|
||||
<template v-if="r.type === ACTION_TYPE.LABELS">
|
||||
<XLabel :label="i" />
|
||||
<XLabel
|
||||
:label="i"
|
||||
:clickable="false"
|
||||
/>
|
||||
</template>
|
||||
<template v-else-if="r.type === ACTION_TYPE.TASK">
|
||||
<SingleTaskInlineReadonly
|
||||
|
|
|
|||
Loading…
Reference in New Issue