a few more fixes to os.popup calls

This commit is contained in:
dakkar 2024-08-14 12:28:57 +01:00
parent 99a0765eaf
commit c2b825b300
4 changed files with 14 additions and 8 deletions

View file

@ -27,12 +27,13 @@ export async function getNoteVersionsMenu(props: {
const cleanups = [] as (() => void)[];
function openVersion(info): void {
os.popup(defineAsyncComponent(() => import('@/components/SkOldNoteWindow.vue')), {
const { dispose } = os.popup(defineAsyncComponent(() => import('@/components/SkOldNoteWindow.vue')), {
note: appearNote,
oldText: info.text,
updatedAt: info.oldDate ? info.oldDate : info.updatedAt,
}, {
}, 'closed');
closed: () => dispose(),
});
}
const menu: MenuItem[] = [];