From 90f073321a14f38d2e82ebeef687843e5cf9ae1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tu=C4=9F=C3=A7e=20K=C3=BC=C3=A7=C3=BCko=C4=9Flu?= Date: Tue, 7 Mar 2023 10:36:58 +0300 Subject: [PATCH] Fixed #3678 - Checkbox: has an attribute that is not supported by input checkboxes. --- components/checkbox/Checkbox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/checkbox/Checkbox.vue b/components/checkbox/Checkbox.vue index 33da565c9..3b0d4cbb6 100755 --- a/components/checkbox/Checkbox.vue +++ b/components/checkbox/Checkbox.vue @@ -95,7 +95,7 @@ export default { }, methods: { onClick(event) { - if (!this.disabled) { + if (!this.disabled && !this.readonly) { let newModelValue; if (this.binary) {