summaryrefslogtreecommitdiff
path: root/src/client
diff options
context:
space:
mode:
Diffstat (limited to 'src/client')
-rw-r--r--src/client/os.ts12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/os.ts b/src/client/os.ts
index 898b876589..e917f8a4a3 100644
--- a/src/client/os.ts
+++ b/src/client/os.ts
@@ -300,8 +300,8 @@ export function modalMenu(items: any[], src?: HTMLElement, options?: { align?: s
resolve();
dispose();
},
- }).then(_dispose => {
- dispose = _dispose;
+ }).then(res => {
+ dispose = res.dispose;
});
});
}
@@ -318,8 +318,8 @@ export function contextMenu(items: any[], ev: MouseEvent) {
resolve();
dispose();
},
- }).then(_dispose => {
- dispose = _dispose;
+ }).then(res => {
+ dispose = res.dispose;
});
});
}
@@ -337,8 +337,8 @@ export function post(props: Record<string, any>) {
resolve();
dispose();
},
- }).then(_dispose => {
- dispose = _dispose;
+ }).then(res => {
+ dispose = res.dispose;
});
});
}