From 216ccbfcef4b53fd082be6db2a021f5ba3da40b8 Mon Sep 17 00:00:00 2001 From: jamesread Date: Thu, 28 Sep 2023 22:24:35 +0100 Subject: [PATCH] bugfix: Timestamp "IDs" need to be a string --- webui/js/ActionButton.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webui/js/ActionButton.js b/webui/js/ActionButton.js index a8a5538..07a2840 100644 --- a/webui/js/ActionButton.js +++ b/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() } }