Sfoglia il codice sorgente

fix: update render function for quota display in Detail page

CalciumIon 1 anno fa
parent
commit
f92d96e298
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  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),
           },
         ],
       },