Skip to content

Commit b720332

Browse files
fix: Prepare for possibility that a value exceeds the options
Co-authored-by: Nico Hoffmann ෴. <[email protected]>
1 parent b154495 commit b720332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

panel/src/components/Forms/Field/CheckboxesField.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
{{ $t("deselect.all") }}
2727
</k-button>
2828
<k-button
29-
:disabled="value.length === options.length"
29+
:disabled="value.length >= options.length"
3030
:responsive="true"
3131
icon="select-all"
3232
size="xs"

0 commit comments

Comments
 (0)