note map fixes

This commit is contained in:
zadam 2022-11-06 14:38:41 +01:00
parent 1d8b02055e
commit f1eaa20e47
3 changed files with 6 additions and 1 deletions

View file

@ -866,6 +866,11 @@ class Note extends AbstractEntity {
}
function addSubtreeNotesInner(note, parentNote = null) {
// share can be removed after 0.57 since it will be put under hidden
if (note.noteId === 'hidden' || note.noteId === 'share') {
return;
}
if (parentNote) {
// this needs to happen first before noteSet check to include all clone relationships
relationships.push({

View file

@ -149,6 +149,7 @@ export default class DesktopLayout {
new NoteWrapperWidget()
.child(new FlexContainer('row').class('title-row')
.css("height", "50px")
.css("min-height", "50px")
.css('align-items', "center")
.cssBlock('.title-row > * { margin: 5px; }')
.child(new NoteIconWidget())

View file

@ -16,7 +16,6 @@ const TPL = `
position: absolute;
right: 5px;
bottom: 5px;
font-size: 180%;
z-index: 1000;
}