We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 551f99e commit bc7cd09Copy full SHA for bc7cd09
superset-frontend/src/features/databases/DatabaseModal/ExtraOptions.tsx
@@ -489,7 +489,7 @@ const ExtraOptions = ({
489
</div>
490
</StyledInputContainer>
491
<StyledInputContainer
492
- css={isFileUploadSupportedByEngine ? no_margin_bottom : {}}
+ css={!!isFileUploadSupportedByEngine ? no_margin_bottom : {}}
493
>
494
<div className="input-container">
495
<Checkbox
@@ -516,7 +516,7 @@ const ExtraOptions = ({
516
517
{isFileUploadSupportedByEngine && (
518
519
- css={db?.allow_file_upload ? no_margin_bottom : {}}
+ css={!!db?.allow_file_upload ? no_margin_bottom : {}}
520
521
522
0 commit comments