From 43b77c8567aeca1117fe88893f6000a8e72f48d2 Mon Sep 17 00:00:00 2001 From: Josef Gabrielsson Date: Sun, 25 Aug 2024 23:52:30 +0200 Subject: [PATCH] --- nightly/front.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nightly/front.js b/nightly/front.js index 5db0fdbd..fd11c1dc 100644 --- a/nightly/front.js +++ b/nightly/front.js @@ -229,7 +229,7 @@ var dom = { var el = object instanceof Object ? object : dom.get(object) // Todo: Remove in future. if (el) { value = prop ? 'visibility: hidden' : 'display: none' - el.style.cssText = value + ' !important' + el.style.cssText += value + ' !important' } },