fix(style): cluster state do not display

This commit is contained in:
jialin
2025-10-14 13:09:22 +08:00
parent 903500dcfa
commit 620c113fae
28 changed files with 200 additions and 198 deletions
+5 -1
View File
@@ -3,6 +3,8 @@ import React from 'react';
interface CatalogSkeltonProps {
span: number;
skeletonProps?: any;
skeletonStyle?: React.CSSProperties;
}
const CardSkelton: React.FC<CatalogSkeltonProps> = (props) => {
@@ -21,8 +23,10 @@ const CardSkelton: React.FC<CatalogSkeltonProps> = (props) => {
style={{
border: '1px solid var(--ant-color-border)',
borderRadius: 'var(--border-radius-base)',
padding: '16px 16px'
padding: '16px 16px',
...props.skeletonStyle
}}
{...(props.skeletonProps || {})}
></Skeleton>
</Col>
);