diff --git a/client/packages/lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx b/client/packages/lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx index d64ffc8b1..ee68b9b1b 100644 --- a/client/packages/lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx +++ b/client/packages/lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx @@ -60,8 +60,8 @@ const getStyle = ( postion: -webkit-sticky; left: 0px !important; margin: ${style.margin} !important; + z-index: 999; - ${fixedToolbar && `z-index: 99;`}; ${fixedToolbar && position === 'below' && `bottom: 0;`}; ${fixedToolbar && position === 'above' && `top: 0;` }; diff --git a/client/packages/lowcoder/src/pages/setting/idSource/OAuthForms/GenericOAuthForm.tsx b/client/packages/lowcoder/src/pages/setting/idSource/OAuthForms/GenericOAuthForm.tsx index f925d0493..a58219d61 100644 --- a/client/packages/lowcoder/src/pages/setting/idSource/OAuthForms/GenericOAuthForm.tsx +++ b/client/packages/lowcoder/src/pages/setting/idSource/OAuthForms/GenericOAuthForm.tsx @@ -140,6 +140,7 @@ function GenericOAuthForm(props: GenericOAuthFormProp) { setIssuerDetails(issuerDetails => ({ ...issuerDetails, ...values, + authType: AuthType.Generic, })) setCurrentStep(currentStep => currentStep + 1); }) @@ -152,7 +153,8 @@ function GenericOAuthForm(props: GenericOAuthFormProp) { ...issuerDetails, sourceMappings: { ...values, - } + }, + authType: AuthType.Generic, }; saveAuthProvider(updatedDetails); return updatedDetails;