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 c3f393c commit 1081802Copy full SHA for 1081802
Doc/howto/logging.rst
@@ -402,11 +402,13 @@ following diagram.
402
function updateBody(theme) {
403
let elem = document.body;
404
405
+ elem.classList.remove('dark-theme');
406
+ elem.classList.remove('light-theme');
407
if (theme === 'dark') {
408
elem.classList.add('dark-theme');
409
}
- else {
- elem.classList.remove('dark-theme');
410
+ else if (theme === 'light') {
411
+ elem.classList.add('light-theme');
412
413
414
Doc/howto/logging_flow.svg
0 commit comments