From a0063099127aa510f1ff71f8c89356836db9e138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C4=B0rfan=20Evrens?= Date: Sat, 18 Oct 2025 07:28:14 +0300 Subject: [PATCH] Update handleLabelClick to check for child options --- src/components/CurvedBottomNavigation.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CurvedBottomNavigation.vue b/src/components/CurvedBottomNavigation.vue index 0dfa239..bdc12e9 100644 --- a/src/components/CurvedBottomNavigation.vue +++ b/src/components/CurvedBottomNavigation.vue @@ -245,7 +245,7 @@ function cssLoader() { head.appendChild(style); } function handleLabelClick(button: CurvedOption) { - if (!showable.value || button.isActive) { + if ((!showable.value || button.isActive) && hasChild(button)) { toggleClass(); }