Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: remove limit of 5 tags for tag selector
Signed-off-by: Lukas Schaefer <[email protected]>
  • Loading branch information
lukasdotcom committed Jun 16, 2025
commit 4fcf27ca5452d8220eeae3bcbf00bcddec496e4f
3 changes: 3 additions & 0 deletions src/components/ApprovalRule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
:clear-search-on-select="true"
:append-to-body="false"
:aria-label-combobox="pendingLabel"
:limit="null"
@input="update('tagPending', $event)" />
</div>
<div class="users">
Expand Down Expand Up @@ -83,6 +84,7 @@
:close-on-select="true"
:clear-search-on-select="true"
:aria-label-combobox="approvedLabel"
:limit="null"
@input="update('tagApproved', $event)" />
</div>
<div class="tag">
Expand All @@ -103,6 +105,7 @@
:close-on-select="true"
:clear-search-on-select="true"
:aria-label-combobox="rejectedLabel"
:limit="null"
@input="update('tagRejected', $event)" />
</div>
</div>
Expand Down