fix: dashboard usage display

main
jialin 1 year ago
parent c0344b385a
commit 0690612477

@ -57,7 +57,7 @@ const ActiveTable = () => {
render: (text: any, record: any) => {
let val = text;
if (!text) {
val = NACategories.includes(record.category?.[0]) ? 'N/A' : 0;
val = !NACategories.includes(record.categories?.[0]) ? 'N/A' : 0;
}
return (
<AutoTooltip ghost>

Loading…
Cancel
Save