mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-04 20:59:02 +00:00
Font chooser bug fix
Fixed a small bug where it stops iterating through the font options if it encounters a blank option.
This commit is contained in:
parent
f021bec086
commit
1b56426c94
@ -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]);
|
||||
|
Loading…
Reference in New Issue
Block a user