We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e2fef0 commit e59bcc1Copy full SHA for e59bcc1
src/fields/fieldVueMultiSelect.vue
@@ -17,7 +17,7 @@
17
:custom-label="schema.selectOptions.customLabel || null",
18
:taggable="schema.selectOptions.taggable",
19
:tag-placeholder="schema.selectOptions.tagPlaceholder",
20
- :max="schema.max",
+ :max="schema.max || null",
21
@update="updateSelected",
22
@tag="addTag",
23
@select="onSelect",
@@ -33,7 +33,7 @@
33
:limit="schema.selectOptions.limit",
34
:limit-text="schema.selectOptions.limitText",
35
:loading="schema.selectOptions.loading",
36
- :disabled="schema.disabled",
+ :disabled="disabled",
37
)
38
</template>
39
<script>
0 commit comments