(fix)(webapp)Fix the issue where two '%%' are displayed in the percentage presentation

0 —>0%  but 0.9112->91.12%%
This commit is contained in:
lysgithub0302
2025-06-16 18:14:23 +08:00
parent ac31870890
commit 94a3da57f3

View File

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