mirror of
https://github.com/zadam/trilium.git
synced 2025-01-09 16:49:11 +08:00
fix note sources, fixes #123
This commit is contained in:
parent
7a9542b4fc
commit
b2c9a0da21
2 changed files with 2537 additions and 2537 deletions
5072
package-lock.json
generated
5072
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -29,7 +29,7 @@ function formatNode(node, level) {
|
|||
const indentAfter = new Array(level - 1).join(' ');
|
||||
let textNode;
|
||||
|
||||
for (const i = 0; i < node.children.length; i++) {
|
||||
for (let i = 0; i < node.children.length; i++) {
|
||||
textNode = document.createTextNode('\n' + indentBefore);
|
||||
node.insertBefore(textNode, node.children[i]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue