mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
fix: Fixes broken loading state for container
This commit is contained in:
parent
558d66fed0
commit
dcfdea3969
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ export const Container = ({
|
|||
|
||||
return (
|
||||
<div
|
||||
className={`jet-container tw-flex tw-flex-col ${properties.loadingState && 'jet-container-loading'} ${
|
||||
className={`jet-container tw-flex tw-flex-col ${isLoading ? 'jet-container-loading' : ''} ${
|
||||
properties.showHeader && 'jet-container--with-header'
|
||||
}`}
|
||||
id={id}
|
||||
|
|
|
|||
Loading…
Reference in a new issue