8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b62605d commit 3302c5fCopy full SHA for 3302c5f
Doc/howto/logging.rst
@@ -403,11 +403,13 @@ following diagram.
403
function updateBody(theme) {
404
let elem = document.body;
405
406
+ elem.classList.remove('dark-theme');
407
+ elem.classList.remove('light-theme');
408
if (theme === 'dark') {
409
elem.classList.add('dark-theme');
410
}
- else {
- elem.classList.remove('dark-theme');
411
+ else if (theme === 'light') {
412
+ elem.classList.add('light-theme');
413
414
415
Doc/howto/logging_flow.svg
0 commit comments