From fe77a8288a4f1495dac24016ca3d99e36c96a04b Mon Sep 17 00:00:00 2001 From: Jaifroid Date: Sun, 19 May 2024 16:05:25 +0100 Subject: [PATCH] Fix very minor error with undefined variable --- www/js/lib/uiUtil.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/lib/uiUtil.js b/www/js/lib/uiUtil.js index 89a8a591..20a2b8a8 100644 --- a/www/js/lib/uiUtil.js +++ b/www/js/lib/uiUtil.js @@ -936,7 +936,7 @@ function returnToCurrentPage () { tabTransitionToSection('home', params.showUIAnimations); const welcomeText = document.getElementById('welcomeText'); welcomeText.style.display = 'none'; - viewArticle.style.display = 'none'; + document.getElementById('viewArticle').style.display = 'none'; } // Reports an error in loading one of the ASM or WASM machines to the UI API Status Panel