Skip to content

Commit

Permalink
Fix very minor error with undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaifroid committed May 19, 2024
1 parent 46e0e00 commit fe77a82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/js/lib/uiUtil.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit fe77a82

Please sign in to comment.