mirror of
https://github.com/zadam/trilium.git
synced 2025-02-24 15:05:31 +08:00
fix ribbon tab not appearing
This commit is contained in:
parent
e57dee2f14
commit
7400a6723e
1 changed files with 3 additions and 1 deletions
|
@ -176,6 +176,8 @@ export default class RibbonContainer extends NoteContextAwareWidget {
|
|||
if (activate) {
|
||||
const ribbonComponendId = $ribbonTitle.attr('data-ribbon-component-id');
|
||||
|
||||
const wasAlreadyActive = this.lastActiveComponentId === ribbonComponendId;
|
||||
|
||||
this.lastActiveComponentId = ribbonComponendId;
|
||||
|
||||
this.$tabContainer.find(`.ribbon-tab-title[data-ribbon-component-id="${ribbonComponendId}"]`).addClass("active");
|
||||
|
@ -183,7 +185,7 @@ export default class RibbonContainer extends NoteContextAwareWidget {
|
|||
|
||||
const activeChild = this.getActiveRibbonWidget();
|
||||
|
||||
if (activeChild && refreshActiveTab) {
|
||||
if (activeChild && (refreshActiveTab || !wasAlreadyActive)) {
|
||||
activeChild.handleEvent('noteSwitched', {noteContext: this.noteContext, notePath: this.notePath});
|
||||
}
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue