From eb3aae9557cf19f9f1c62e46dc3946b469e135a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bahad=C4=B1r=20Sofuo=C4=9Flu?= Date: Fri, 17 Mar 2023 16:56:30 +0300 Subject: [PATCH] Fixed #3762 - Tristatecheckbox default case added --- components/tristatecheckbox/TriStateCheckbox.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/tristatecheckbox/TriStateCheckbox.vue b/components/tristatecheckbox/TriStateCheckbox.vue index 01e5705ea..2e82f32e4 100755 --- a/components/tristatecheckbox/TriStateCheckbox.vue +++ b/components/tristatecheckbox/TriStateCheckbox.vue @@ -73,7 +73,7 @@ export default { newValue = null; break; - case null: + default: newValue = true; break; }