Skip to content

Commit 2044b0a

Browse files
authored
Merge pull request #868 from raheeliftikhar5/table-fixes
General Fixes
2 parents 594e68f + 85a9153 commit 2044b0a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

client/packages/lowcoder/src/comps/comps/tableComp/tableToolbarComp.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ const getStyle = (
6060
postion: -webkit-sticky;
6161
left: 0px !important;
6262
margin: ${style.margin} !important;
63+
z-index: 999;
6364
64-
${fixedToolbar && `z-index: 99;`};
6565
${fixedToolbar && position === 'below' && `bottom: 0;`};
6666
${fixedToolbar && position === 'above' && `top: 0;` };
6767

client/packages/lowcoder/src/pages/setting/idSource/OAuthForms/GenericOAuthForm.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ function GenericOAuthForm(props: GenericOAuthFormProp) {
140140
setIssuerDetails(issuerDetails => ({
141141
...issuerDetails,
142142
...values,
143+
authType: AuthType.Generic,
143144
}))
144145
setCurrentStep(currentStep => currentStep + 1);
145146
})
@@ -152,7 +153,8 @@ function GenericOAuthForm(props: GenericOAuthFormProp) {
152153
...issuerDetails,
153154
sourceMappings: {
154155
...values,
155-
}
156+
},
157+
authType: AuthType.Generic,
156158
};
157159
saveAuthProvider(updatedDetails);
158160
return updatedDetails;

0 commit comments

Comments
 (0)