From 4cdeab1218d0e75a5d8f4f55761e94ff122bc5e7 Mon Sep 17 00:00:00 2001 From: Sublunar Space Date: Thu, 22 Sep 2022 23:14:38 +0200 Subject: [PATCH] fix --- js/SL.Calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/SL.Calendar.js b/js/SL.Calendar.js index b10a4f1..49352e9 100644 --- a/js/SL.Calendar.js +++ b/js/SL.Calendar.js @@ -457,7 +457,7 @@ SL.Calendar = (function() { menuItems[i.id] = {action: i.action, tags: i.tags}; if (i.tags) { i.tags.split(" ").forEach(function(tag) { - tags.push(tag.replace(/[^a-Z0-9_-]/g, '')); + tags.push(tag); }); } }