Skip to content

Commit

Permalink
修改clusterDetailRefresh参数类型
Browse files Browse the repository at this point in the history
  • Loading branch information
TianWuwt committed Jan 13, 2025
1 parent 80642f4 commit 6d038a3
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ui/src/pages/Cluster/Detail/Overview/BasicInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,11 @@ export default function BasicInfo({
deletionProtection,
clusterDetailRefresh,
...props
}: ResponseOBCluster & { style?: React.CSSProperties; extra?: boolean }) {
}: ResponseOBCluster & {
style?: React.CSSProperties;
extra?: boolean;
clusterDetailRefresh?: () => void;
}) {
const statusItem = findByValue(STATUS_LIST, status);
const statusDetailItem = findByValue(STATUS_LIST, statusDetail);
const topologyRendering: ITopologyRendering = useMemo(() => {
Expand Down

0 comments on commit 6d038a3

Please sign in to comment.