bugfix: Timestamp "IDs" need to be a string
This commit is contained in:
parent
66b012cd55
commit
216ccbfcef
|
|
@ -57,7 +57,7 @@ class ActionButton extends window.HTMLElement {
|
|||
if (window.isSecureContext) {
|
||||
return window.crypto.randomUUID()
|
||||
} else {
|
||||
return Date.now()
|
||||
return Date.now().toString()
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue