Skip to content

Commit 295ea0e

Browse files
authored
Merge pull request #307 from nextcloud/fix/tag-limit
fix: remove limit of 5 tags for tag selector
2 parents f5d2e32 + 4fcf27c commit 295ea0e

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/components/ApprovalRule.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
:clear-search-on-select="true"
3636
:append-to-body="false"
3737
:aria-label-combobox="pendingLabel"
38+
:limit="null"
3839
@input="update('tagPending', $event)" />
3940
</div>
4041
<div class="users">
@@ -83,6 +84,7 @@
8384
:close-on-select="true"
8485
:clear-search-on-select="true"
8586
:aria-label-combobox="approvedLabel"
87+
:limit="null"
8688
@input="update('tagApproved', $event)" />
8789
</div>
8890
<div class="tag">
@@ -103,6 +105,7 @@
103105
:close-on-select="true"
104106
:clear-search-on-select="true"
105107
:aria-label-combobox="rejectedLabel"
108+
:limit="null"
106109
@input="update('tagRejected', $event)" />
107110
</div>
108111
</div>

0 commit comments

Comments
 (0)