From d25f1116ab16ba79b70f74476da46798273d5b4d Mon Sep 17 00:00:00 2001 From: RAHEEL Date: Sat, 11 May 2024 21:14:01 +0500 Subject: [PATCH 1/2] fixed table page size options hidden by fixed table headers --- .../lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;` }; From 85a91536e5707f68914b11178b7eacf4c51bc828 Mon Sep 17 00:00:00 2001 From: RAHEEL Date: Sat, 11 May 2024 21:56:40 +0500 Subject: [PATCH 2/2] fix generic oauth issue --- .../pages/setting/idSource/OAuthForms/GenericOAuthForm.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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;