2 Комити 79c03f41eb ... 4c88001c19

Аутор SHA1 Порука Датум
  bill 4c88001c19 Merge branch 'v2.0.0-ga' of http://192.168.0.115:3000/bill/fuse-code into v2.0.0-ga пре 1 недеља
  bill 5b6f9a4b80 fix: 1 пре 1 недеља
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/store/sys.ts

+ 1 - 1
src/store/sys.ts

@@ -41,7 +41,7 @@ watchEffect(() => (document.title = title.value));
 
 let currentTempIndex = 0;
 export const isTemploraryID = (id: string) =>
-  id.includes("__currentTempIndex__");
+  typeof id === 'string' && id.includes("__currentTempIndex__");
 export const createTemploraryID = () =>
   `__currentTempIndex__${currentTempIndex++}`;