File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
client/packages/lowcoder/src/comps/generators Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -40,15 +40,15 @@ const LoadingWrapper = ({
40
40
41
41
const showLoading = useMemo ( ( ) => {
42
42
const themeDataIndicator = currentTheme ?. showDataLoadingIndicators ;
43
- const compDataIndicator = compState . comp ?. comp . showDataLoadingIndicators ;
43
+ const compDataIndicator = compState . comp ?. comp ? .showDataLoadingIndicators ;
44
44
45
45
return isLoading ? (
46
46
compDataIndicator !== 'undefined' ? compDataIndicator : Boolean ( themeDataIndicator )
47
47
) : false ;
48
48
} , [
49
49
isLoading ,
50
50
currentTheme ?. showDataLoadingIndicators ,
51
- compState . comp ?. comp . showDataLoadingIndicators ,
51
+ compState . comp ?. comp ? .showDataLoadingIndicators ,
52
52
] ) ;
53
53
54
54
if ( currentTheme ?. dataLoadingIndicator === 'skeleton' ) {
You can’t perform that action at this time.
0 commit comments