mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
move the unhoist button to the right
This commit is contained in:
parent
341480e7cf
commit
40fb6aa168
@ -544,15 +544,6 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
|
||||
|
||||
const isHoistedNote = activeNoteContext && activeNoteContext.hoistedNoteId === note.noteId && note.noteId !== 'root';
|
||||
|
||||
if (isHoistedNote) {
|
||||
const $unhoistButton = $('<span class="tree-item-button unhoist-button bx bx-door-open" title="Unhoist"></span>')
|
||||
.on("click", cancelClickPropagation);
|
||||
|
||||
// unhoist button is prepended since compared to other buttons, this is not just convenience
|
||||
// on the mobile interface - it's the only way to unhoist
|
||||
$span.prepend($unhoistButton);
|
||||
}
|
||||
|
||||
if (note.hasLabel('workspace') && !isHoistedNote) {
|
||||
const $enterWorkspaceButton = $('<span class="tree-item-button enter-workspace-button bx bx-door-open" title="Hoist this note (workspace)"></span>')
|
||||
.on("click", cancelClickPropagation);
|
||||
@ -573,6 +564,13 @@ export default class NoteTreeWidget extends NoteContextAwareWidget {
|
||||
|
||||
$span.append($createChildNoteButton);
|
||||
}
|
||||
|
||||
if (isHoistedNote) {
|
||||
const $unhoistButton = $('<span class="tree-item-button unhoist-button bx bx-door-open" title="Unhoist"></span>')
|
||||
.on("click", cancelClickPropagation);
|
||||
|
||||
$span.append($unhoistButton);
|
||||
}
|
||||
},
|
||||
// this is done to automatically lazy load all expanded notes after tree load
|
||||
loadChildren: (event, data) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user