瀏覽代碼

商品价格曲线数值等于0不显示bug

jwyu 7 月之前
父節點
當前提交
1028099e8f
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/hooks/chart/render.js

+ 1 - 1
src/hooks/chart/render.js

@@ -2054,7 +2054,7 @@ function filterInvalidData(item){
     let temArr=[]
     commodityXData.value.forEach((i,index)=>{
       if(i.IsHide!==1){
-        temArr.push(arr[index]||null)
+        temArr.push(arr[index])
       }
     })