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:
copilot-swe-agent[bot] 2025-11-15 15:38:27 +00:00
parent c16ca20db5
commit 8013f0e51a
2 changed files with 5 additions and 1 deletions

View File

@ -12,6 +12,7 @@
<XLabel
v-if="item.fieldType === 'labels'"
:label="(item.item as unknown as ILabel)"
:clickable="false"
class="filter-autocomplete__label"
/>
<User

View File

@ -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