From c86b76261afb1bd6ba7e3a6fc35bf3f7561a782a Mon Sep 17 00:00:00 2001 From: Chaim Lev-Ari Date: Tue, 9 May 2023 08:00:14 +0700 Subject: [PATCH] fix(gitops): make polling mechanism static button [EE-5420] (#8893) --- .../form-components/ButtonSelector/ButtonSelector.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/app/react/components/form-components/ButtonSelector/ButtonSelector.tsx b/app/react/components/form-components/ButtonSelector/ButtonSelector.tsx index c62d5724d..7eb2cd97c 100644 --- a/app/react/components/form-components/ButtonSelector/ButtonSelector.tsx +++ b/app/react/components/form-components/ButtonSelector/ButtonSelector.tsx @@ -64,9 +64,12 @@ function OptionItem({ color="light" as="label" disabled={disabled || readOnly} - className={clsx({ - active: selected, - })} + className={clsx( + { + active: selected, + }, + '!static !z-auto' + )} > {children}