From a2bd59e45ebd46147ff4edf2992ff3e996e8acdf Mon Sep 17 00:00:00 2001 From: anovazzi1 Date: Tue, 3 Dec 2024 20:10:45 -0300 Subject: [PATCH] fix: prevent inconsistent scroll behavior (#4958) Refactor: update inputComponent popover styles and button variants --- .../components/inputComponent/components/popover/index.tsx | 2 +- src/frontend/src/components/ui/button.tsx | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx b/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx index 8147ce84c..4b0581525 100644 --- a/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx +++ b/src/frontend/src/components/core/parameterRenderComponent/components/inputComponent/components/popover/index.tsx @@ -68,7 +68,7 @@ const CustomInputPopover = ({
( className={ !unstyled ? buttonVariants({ variant, size, className }) - : cn(className, "noflow nowheel nopan nodelete nodrag") + : cn(className) } disabled={loading || disabled} {...(asChild ? {} : { type: type || "button" })}