Explorar o código

bugfix: Timestamp "IDs" need to be a string

jamesread %!s(int64=2) %!d(string=hai) anos
pai
achega
216ccbfcef
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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()
     }
   }