Skip to content

Commit

Permalink
Fixed #3678 - Checkbox: has an attribute that is not supported by inp…
Browse files Browse the repository at this point in the history
…ut checkboxes.
  • Loading branch information
tugcekucukoglu committed Mar 7, 2023
1 parent 26433c3 commit 90f0733
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/checkbox/Checkbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default {
},
methods: {
onClick(event) {
if (!this.disabled) {
if (!this.disabled && !this.readonly) {
let newModelValue;
if (this.binary) {
Expand Down

0 comments on commit 90f0733

Please sign in to comment.