Browse Source

fix: update render function for quota display in Detail page

CalciumIon 1 year ago
parent
commit
f92d96e298
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/src/pages/Detail/index.js

+ 1 - 1
web/src/pages/Detail/index.js

@@ -143,7 +143,7 @@ const Detail = (props) => {
         content: [
           {
             key: (datum) => datum['Model'],
-            value: (datum) => renderQuotaNumberWithDigit(datum['rawQuota'] || 0, 4),
+            value: (datum) => renderQuota(datum['rawQuota'] || 0, 4),
           },
         ],
       },