feat(popup_editor): add read-only bar

This commit is contained in:
Elian Doran 2025-11-25 08:34:35 +02:00
parent a544b0dc19
commit c16f9af6a9
No known key found for this signature in database

View File

@ -17,6 +17,7 @@ import { DESKTOP_FLOATING_BUTTONS, MOBILE_FLOATING_BUTTONS, POPUP_HIDDEN_FLOATIN
import utils from "../../services/utils";
import tree from "../../services/tree";
import froca from "../../services/froca";
import ReadOnlyNoteInfoBar from "../ReadOnlyNoteInfoBar";
export default function PopupEditor() {
const [ shown, setShown ] = useState(false);
@ -67,6 +68,7 @@ export default function PopupEditor() {
onHidden={() => setShown(false)}
keepInDom // needed for faster loading
>
<ReadOnlyNoteInfoBar />
<PromotedAttributes />
<StandaloneRibbonAdapter component={FormattingToolbar} />
<FloatingButtons items={items} />