From e10d8dbe1dc9099ab4cbdbbaf50e65fffb3e8867 Mon Sep 17 00:00:00 2001 From: themancalledjakob Date: Tue, 5 Mar 2024 18:46:50 +0100 Subject: [PATCH] spaces in filenames are OK --- bin/em/variabletime/web/js/utils.js | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/em/variabletime/web/js/utils.js b/bin/em/variabletime/web/js/utils.js index 473bd37..de2bef2 100644 --- a/bin/em/variabletime/web/js/utils.js +++ b/bin/em/variabletime/web/js/utils.js @@ -421,6 +421,7 @@ const sequencialPromises = async (iterable, callback = false) => { const toCssClass = (text, prefix = '') => { return prefix + 'vt_' + text .replaceAll('.','-dot-') + .replaceAll(' ','_') .replaceAll('#','-hash-') ; };