diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2022-01-18 21:35:57 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2022-01-18 21:35:57 +0900 |
| commit | a8fad1b61c554b9e42d310a522f3c2c4e8879892 (patch) | |
| tree | adfcbff1ae402f5cce47d47fc320b0a96dfc244d /packages/client/src/components/ui | |
| parent | Fix #8151 (#8152) (diff) | |
| download | misskey-a8fad1b61c554b9e42d310a522f3c2c4e8879892.tar.gz misskey-a8fad1b61c554b9e42d310a522f3c2c4e8879892.tar.bz2 misskey-a8fad1b61c554b9e42d310a522f3c2c4e8879892.zip | |
refactor
Diffstat (limited to 'packages/client/src/components/ui')
| -rw-r--r-- | packages/client/src/components/ui/window.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/client/src/components/ui/window.vue b/packages/client/src/components/ui/window.vue index bd33289ccc..fa32ecfdef 100644 --- a/packages/client/src/components/ui/window.vue +++ b/packages/client/src/components/ui/window.vue @@ -147,9 +147,9 @@ export default defineComponent({ } }, - onContextmenu(e) { + onContextmenu(ev: MouseEvent) { if (this.contextmenu) { - os.contextMenu(this.contextmenu, e); + os.contextMenu(this.contextmenu, ev); } }, |