瀏覽代碼

fix(nova): null value processing

Casper Dai 2 年之前
父節點
當前提交
dcc2c6cad4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/utils/adapter/nova.js

+ 1 - 1
src/utils/adapter/nova.js

@@ -77,7 +77,7 @@ export function parseCachePower ({ switchStatus, typeArray = '[]' }) {
         connectIndex: 0,
         portIndex: 0,
         powerIndex: index,
-        type: typeArray[index],
+        type: typeArray?.[index] || '未知',
         action: Number(val)
       }
     })