From d451da6e0603bb11aa346c087f04eb05e10c15e6 Mon Sep 17 00:00:00 2001 From: betterdancing Date: Wed, 23 Oct 2024 01:24:49 -0700 Subject: [PATCH] feat(style-panel): fix AI reviews --- .../src/tabs-group-configurator/TabsGroupConfigurator.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/configurator/src/tabs-group-configurator/TabsGroupConfigurator.vue b/packages/configurator/src/tabs-group-configurator/TabsGroupConfigurator.vue index fb179e94f..03339d195 100644 --- a/packages/configurator/src/tabs-group-configurator/TabsGroupConfigurator.vue +++ b/packages/configurator/src/tabs-group-configurator/TabsGroupConfigurator.vue @@ -98,7 +98,7 @@ const findMatchingFoldValue = (value) => const filterNonMatchingValues = (value) => collapsedOptions.value.filter((item) => - props.valueKey ? item.value[props.valueKey] === value : item.value === value + props.valueKey ? item.value[props.valueKey] !== value : item.value !== value ) const updateOptionDisplay = (value) => {