feat: allow selecting multiple labels at once #945
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "feature/multiple-labels"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Fixes #663
112b2a711b
toee68227065
@ -182,1 +184,4 @@
},
closeAfterSelect: {
type: Boolean,
default() {
since boolean is a primitive there is no need for a factory function here.
Done.
@ -10,1 +10,3 @@
<div class="input-wrapper input" :class="{'has-multiple': multiple && Array.isArray(internalValue) && internalValue.length > 0}">
<div
class="input-wrapper input"
:class="{'has-multiple': multiple && Array.isArray(internalValue) && internalValue.length > 0}">
Move to computed
Done.
Mini changes. Rest ist fine =)
Merging since it's approved and the little nits are fixed.