mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
fix demo document word count widget with contain: none
This commit is contained in:
parent
42daf181d3
commit
4eb9ca7b46
BIN
db/demo.zip
BIN
db/demo.zip
Binary file not shown.
@ -369,8 +369,7 @@ export default class NoteTreeWidget extends TabAwareWidget {
|
||||
data.dataTransfer.setData("text", JSON.stringify(notes));
|
||||
return true; // allow dragging to start
|
||||
},
|
||||
dragEnter: (node, data) => true, // allow drop on any node
|
||||
dragOver: (node, data) => true,
|
||||
dragEnter: (node, data) => node.data.noteType !== 'search',
|
||||
dragDrop: async (node, data) => {
|
||||
if ((data.hitMode === 'over' && node.data.noteType === 'search') ||
|
||||
(['after', 'before'].includes(data.hitMode)
|
||||
@ -1154,6 +1153,12 @@ export default class NoteTreeWidget extends TabAwareWidget {
|
||||
utils.assertArguments(branchId);
|
||||
|
||||
const branch = treeCache.getBranch(branchId);
|
||||
|
||||
if (!branch) {
|
||||
// in case of virtual branches there's nothing to update
|
||||
return;
|
||||
}
|
||||
|
||||
branch.isExpanded = isExpanded;
|
||||
|
||||
await server.put(`branches/${branchId}/expanded/${isExpanded ? 1 : 0}`);
|
||||
|
Loading…
x
Reference in New Issue
Block a user