mirror of
https://github.com/zadam/trilium.git
synced 2025-11-30 04:24:24 +01:00
fix(ribbon): formatting toolbar disappearing after viewing attachments
This commit is contained in:
parent
a6ed4d92c9
commit
12abdcaf6c
@ -8,6 +8,7 @@ import NoteActions from "./NoteActions";
|
|||||||
import { KeyboardActionNames } from "@triliumnext/commons";
|
import { KeyboardActionNames } from "@triliumnext/commons";
|
||||||
import { RIBBON_TAB_DEFINITIONS } from "./RibbonDefinition";
|
import { RIBBON_TAB_DEFINITIONS } from "./RibbonDefinition";
|
||||||
import { TabConfiguration, TitleContext } from "./ribbon-interface";
|
import { TabConfiguration, TitleContext } from "./ribbon-interface";
|
||||||
|
import clsx from "clsx";
|
||||||
|
|
||||||
const TAB_CONFIGURATION = numberObjectsInPlace<TabConfiguration>(RIBBON_TAB_DEFINITIONS);
|
const TAB_CONFIGURATION = numberObjectsInPlace<TabConfiguration>(RIBBON_TAB_DEFINITIONS);
|
||||||
|
|
||||||
@ -63,9 +64,10 @@ export default function Ribbon() {
|
|||||||
}, [ computedTabs, activeTabIndex ]));
|
}, [ computedTabs, activeTabIndex ]));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="ribbon-container" style={{ contain: "none" }}>
|
<div
|
||||||
{noteContext?.viewScope?.viewMode === "default" && (
|
className={clsx("ribbon-container", noteContext?.viewScope?.viewMode !== "default" && "hidden-ext")}
|
||||||
<>
|
style={{ contain: "none" }}
|
||||||
|
>
|
||||||
<div className="ribbon-top-row">
|
<div className="ribbon-top-row">
|
||||||
<div className="ribbon-tab-container">
|
<div className="ribbon-tab-container">
|
||||||
{computedTabs && computedTabs.map(({ title, icon, index, toggleCommand, shouldShow }) => (
|
{computedTabs && computedTabs.map(({ title, icon, index, toggleCommand, shouldShow }) => (
|
||||||
@ -117,8 +119,6 @@ export default function Ribbon() {
|
|||||||
);
|
);
|
||||||
})}
|
})}
|
||||||
</div>
|
</div>
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|||||||
@ -41,7 +41,6 @@ export default function ReadOnlyText({ note, noteContext, ntxId }: TypeWidgetPro
|
|||||||
|
|
||||||
// React to included note changes.
|
// React to included note changes.
|
||||||
useTriliumEvent("refreshIncludedNote", ({ noteId }) => {
|
useTriliumEvent("refreshIncludedNote", ({ noteId }) => {
|
||||||
console.log("Refresh ", noteId);
|
|
||||||
if (!contentRef.current) return;
|
if (!contentRef.current) return;
|
||||||
refreshIncludedNote(contentRef.current, noteId);
|
refreshIncludedNote(contentRef.current, noteId);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user