From 13a918441ca8cc10493a165e8458675e9f18fbbb Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Tue, 21 Nov 2023 08:59:57 -0600 Subject: [PATCH] CE-740 turn off trying to disable back & forth arrows --- src/qqq/components/widgets/components/WidgetDropdownMenu.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/qqq/components/widgets/components/WidgetDropdownMenu.tsx b/src/qqq/components/widgets/components/WidgetDropdownMenu.tsx index 743b0a9..125b5e4 100644 --- a/src/qqq/components/widgets/components/WidgetDropdownMenu.tsx +++ b/src/qqq/components/widgets/components/WidgetDropdownMenu.tsx @@ -172,6 +172,7 @@ function WidgetDropdownMenu({name, defaultValue, label, startIcon, width, disabl onChangeCallback(label, newValue); } + /* this had bugs (seemed to not take immediate effect?), so don't use for now. let currentIndex = getSelectedIndex(value); if(currentIndex == 0) { @@ -190,6 +191,7 @@ function WidgetDropdownMenu({name, defaultValue, label, startIcon, width, disabl { backAndForthInverted ? setBackDisabled(false) : setForthDisabled(false); } + */ }; const handleOnInputChange = (event: any, newValue: any, reason: string) =>