Dimension and metric retrieval and percentage display issue fixes (#2301)

This commit is contained in:
木鱼和尚
2025-07-09 17:20:49 +08:00
committed by GitHub
parent 11d1264d38
commit d8fe2ed2b3
2 changed files with 10 additions and 5 deletions

View File

@@ -42,8 +42,8 @@ const Table: React.FC<Props> = ({ data, size, loading, question, onApplyAuth })
{`${
value
? formatByDataFormatType(value, dataFormatType, dataFormat)
: 0
}%`}
: '0%'
}`}
</div>
);
}