소스 검색

bugfix: Timestamp "IDs" need to be a string

jamesread 2 년 전
부모
커밋
216ccbfcef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      webui/js/ActionButton.js

+ 1 - 1
webui/js/ActionButton.js

@@ -57,7 +57,7 @@ class ActionButton extends window.HTMLElement {
     if (window.isSecureContext) {
       return window.crypto.randomUUID()
     } else {
-      return Date.now()
+      return Date.now().toString()
     }
   }