mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-18 15:40:12 +01:00
This commit is contained in:
parent
e41fa434f9
commit
88b5bc3ec7
1 changed files with 6 additions and 2 deletions
|
|
@ -790,8 +790,12 @@ export const bazaar = {
|
|||
return;
|
||||
}
|
||||
}
|
||||
const linkElement = (document.getElementById("themeDefaultStyle") as HTMLLinkElement);
|
||||
linkElement.href = linkElement.href + "1";
|
||||
const defaultThemeElement = (document.getElementById("themeDefaultStyle") as HTMLLinkElement);
|
||||
defaultThemeElement.href = defaultThemeElement.href + "1";
|
||||
const themeElement = (document.getElementById("themeStyle") as HTMLLinkElement);
|
||||
if (themeElement) {
|
||||
themeElement.href = themeElement.href + "1";
|
||||
}
|
||||
}
|
||||
});
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue