Fixed #3678 - Checkbox: has an attribute that is not supported by input checkboxes.

pull/3711/head
Tuğçe Küçükoğlu 2023-03-07 10:36:58 +03:00
parent 26433c3f12
commit 90f073321a
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ export default {
},
methods: {
onClick(event) {
if (!this.disabled) {
if (!this.disabled && !this.readonly) {
let newModelValue;
if (this.binary) {