From e90f2d7cd118157bf8add38bbd16bddc4efba8ec Mon Sep 17 00:00:00 2001 From: dkanada Date: Sun, 25 Oct 2020 20:24:40 +0900 Subject: [PATCH] fix linting issue --- src/scripts/autoThemes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/autoThemes.js b/src/scripts/autoThemes.js index f5797522a6..9dffda5d2e 100644 --- a/src/scripts/autoThemes.js +++ b/src/scripts/autoThemes.js @@ -13,7 +13,7 @@ events.on(window.connectionManager, 'localusersignedin', function (e, user) { webSettings.getFonts().then(fonts => { for (const font of fonts) { - let link = document.createElement('link'); + const link = document.createElement('link'); link.setAttribute('rel', 'stylesheet'); link.href = font;