mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-23 08:58:26 +00:00
Merge pull request #11548 from ToolJet/hotfix/container-loading
fix: Fixes broken loading state for container
This commit is contained in:
commit
a0541c373d
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