a few more fixes to os.popup calls
This commit is contained in:
parent
99a0765eaf
commit
c2b825b300
4 changed files with 14 additions and 8 deletions
|
|
@ -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[] = [];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue