From 1b56426c94f29a1c8e32d8ec51c6ccbd7a9165ef Mon Sep 17 00:00:00 2001 From: CloudHill <54142180+CloudHill@users.noreply.github.com> Date: Sun, 20 Sep 2020 14:53:09 +0700 Subject: [PATCH] Font chooser bug fix Fixed a small bug where it stops iterating through the font options if it encounters a blank option. --- mods/font-chooser/mod.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/font-chooser/mod.js b/mods/font-chooser/mod.js index 03cd2ca..5d63c74 100644 --- a/mods/font-chooser/mod.js +++ b/mods/font-chooser/mod.js @@ -48,7 +48,7 @@ module.exports = { if (!document.querySelector('.notion-app-inner')) return; clearInterval(attempt_interval); for (let style of ['sans', 'serif', 'mono', 'code']) { - if (!store()[style]) return; + if (!store()[style]) continue; document .querySelector('.notion-app-inner') .style.setProperty(`--theme--font_${style}`, store()[style]);