DESKTOP-SVI9JE1\muzen hace 1 año
padre
commit
2eed0e939e
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      src/views/content/setting/detail.vue

+ 2 - 1
src/views/content/setting/detail.vue

@@ -448,7 +448,8 @@ const statusFormatter = (row) => {
 }
 
 const sceneFormatter = (row) => {
-  if (row.sceneId) {
+  let e = audioClassData.options.find(i => i.id === row.sceneId)
+  if (row.sceneId && e) {
     return audioClassData.options.find(i => i.id === row.sceneId).name
   }
 }