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:
CloudHill 2020-09-20 14:53:09 +07:00 committed by GitHub
parent f021bec086
commit 1b56426c94
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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]);