Skip to content

Commit

Permalink
fix: remove readonly attribute on select element
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel-bijaoui committed Sep 5, 2016
1 parent 9ea47cc commit 2e5e16b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fields/fieldSelect.vue
@@ -1,5 +1,5 @@
<template lang="jade">
select.form-control(v-model="value", :disabled="disabled", :readonly="schema.readonly")
select.form-control(v-model="value", :disabled="disabled")
option(:disabled="schema.required", :value="null", :selected="value == undefined") &lt;Not selected&gt;
option(v-for="item in items", :value="getItemID(item)") {{ getItemName(item) }}
</template>
Expand Down

0 comments on commit 2e5e16b

Please sign in to comment.