mirror of
https://github.com/notion-enhancer/notion-enhancer.git
synced 2025-04-05 05:09:03 +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;
|
if (!document.querySelector('.notion-app-inner')) return;
|
||||||
clearInterval(attempt_interval);
|
clearInterval(attempt_interval);
|
||||||
for (let style of ['sans', 'serif', 'mono', 'code']) {
|
for (let style of ['sans', 'serif', 'mono', 'code']) {
|
||||||
if (!store()[style]) return;
|
if (!store()[style]) continue;
|
||||||
document
|
document
|
||||||
.querySelector('.notion-app-inner')
|
.querySelector('.notion-app-inner')
|
||||||
.style.setProperty(`--theme--font_${style}`, store()[style]);
|
.style.setProperty(`--theme--font_${style}`, store()[style]);
|
||||||
|
Loading…
Reference in New Issue
Block a user