bugfix: Timestamp "IDs" need to be a string

This commit is contained in:
jamesread 2023-09-28 22:24:35 +01:00
parent 66b012cd55
commit 216ccbfcef
1 changed files with 1 additions and 1 deletions

View File

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