File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
client/packages/lowcoder/src/pages/editor Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ import { default as Skeleton } from "antd/es/skeleton";
1616import { default as Spin } from "antd/es/spin" ;
1717import { useTemplateViewMode , useUserViewMode } from "util/hooks" ;
1818import { ProductLoading } from "components/ProductLoading" ;
19+ import { default as LoadingOutlined } from "@ant-design/icons/LoadingOutlined" ;
1920
2021const StyledSkeleton = styled ( Skeleton ) `
2122 padding: 16px;
@@ -40,7 +41,7 @@ export const EditorLoadingSpin = (props: { height?: string | number }) => {
4041 const { height = "100vh" } = props ;
4142 return (
4243 < div style = { { height : height } } >
43- < StyledSpin />
44+ < StyledSpin size = "large" indicator = { < LoadingOutlined spin /> } />
4445 </ div >
4546 ) ;
4647} ;
You can’t perform that action at this time.
0 commit comments