mirror of
https://github.com/zadam/trilium.git
synced 2025-03-01 14:22:32 +01:00
Merge branch 'stable'
This commit is contained in:
commit
1d8b02055e
@ -279,7 +279,13 @@ export default class NoteDetailWidget extends NoteContextAwareWidget {
|
|||||||
// globally, so it gets also to e.g. ribbon components. But this means that the event can be generated multiple
|
// globally, so it gets also to e.g. ribbon components. But this means that the event can be generated multiple
|
||||||
// times if the same note is open in several tabs.
|
// times if the same note is open in several tabs.
|
||||||
|
|
||||||
if (loadResults.isNoteReloaded(this.noteId, this.componentId)
|
if (loadResults.isNoteContentReloaded(this.noteId, this.componentId)) {
|
||||||
|
// probably incorrect event
|
||||||
|
// calling this.refresh() is not enough since the event needs to be propagated to children as well
|
||||||
|
// FIXME: create a separate event to force hierarchical refresh
|
||||||
|
this.triggerEvent('noteTypeMimeChanged', {noteId: this.noteId});
|
||||||
|
}
|
||||||
|
else if (loadResults.isNoteReloaded(this.noteId, this.componentId)
|
||||||
&& (this.type !== await this.getWidgetType() || this.mime !== this.note.mime)) {
|
&& (this.type !== await this.getWidgetType() || this.mime !== this.note.mime)) {
|
||||||
|
|
||||||
this.triggerEvent('noteTypeMimeChanged', {noteId: this.noteId});
|
this.triggerEvent('noteTypeMimeChanged', {noteId: this.noteId});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user