Skip to content

Commit

Permalink
fix: handle disabled and max props of VueMultiSelect better
Browse files Browse the repository at this point in the history
  • Loading branch information
Lionel Bijaoui committed Aug 24, 2016
1 parent a2665dd commit 9a6fc4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fields/fieldVueMultiSelect.vue
Expand Up @@ -17,7 +17,7 @@
:custom-label="schema.selectOptions.customLabel || null",
:taggable="schema.selectOptions.taggable",
:tag-placeholder="schema.selectOptions.tagPlaceholder",
:max="schema.max",
:max="schema.max || null",
@update="updateSelected",
@tag="addTag",
@select="onSelect",
Expand All @@ -33,7 +33,7 @@
:limit="schema.selectOptions.limit",
:limit-text="schema.selectOptions.limitText",
:loading="schema.selectOptions.loading",
:disabled="schema.disabled",
:disabled="disabled",
)
</template>
<script>
Expand Down

0 comments on commit 9a6fc4b

Please sign in to comment.