Skip to content

Commit 5eb2f72

Browse files
updated editor view loader
1 parent aeca8c5 commit 5eb2f72

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client/packages/lowcoder/src/pages/editor/editorSkeletonView.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ import { default as Skeleton } from "antd/es/skeleton";
1616
import { default as Spin } from "antd/es/spin";
1717
import { useTemplateViewMode, useUserViewMode } from "util/hooks";
1818
import { ProductLoading } from "components/ProductLoading";
19+
import { default as LoadingOutlined } from "@ant-design/icons/LoadingOutlined";
1920

2021
const 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
};

0 commit comments

Comments
 (0)