mirror of
https://github.com/siyuan-note/siyuan.git
synced 2026-01-07 09:18:49 +01:00
🎨 history
This commit is contained in:
parent
7d9ed4129d
commit
26a7efea22
1 changed files with 1 additions and 1 deletions
|
|
@ -229,7 +229,7 @@ export const openHistory = () => {
|
|||
let notebookSelectHTML = "";
|
||||
window.siyuan.notebooks.forEach((item) => {
|
||||
if (!item.closed) {
|
||||
notebookSelectHTML += ` <option value="${item.id}"${item.id === window.siyuan.storage[Constants.LOCAL_HISTORYNOTEID] ? " selected" : ""}>${item.name}</option>`;
|
||||
notebookSelectHTML += ` <option value="${item.id}"${item.id === window.siyuan.storage[Constants.LOCAL_HISTORYNOTEID] ? " selected" : ""}>${escapeHtml(item.name)}</option>`;
|
||||
}
|
||||
});
|
||||
const contentHTML = `<div class="fn__flex-column" style="height: 100%;">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue