diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2021-12-05 16:57:49 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2021-12-05 16:57:49 +0900 |
| commit | bcf7530eef3e43282a8869d5701ccfcc3f5b2e5a (patch) | |
| tree | 1b63c2168d96e32e108f4df5ae62c75b11380f69 /packages/client/src/os.ts | |
| parent | add note (diff) | |
| download | misskey-bcf7530eef3e43282a8869d5701ccfcc3f5b2e5a.tar.gz misskey-bcf7530eef3e43282a8869d5701ccfcc3f5b2e5a.tar.bz2 misskey-bcf7530eef3e43282a8869d5701ccfcc3f5b2e5a.zip | |
refactor(client): :sparkles:
Diffstat (limited to 'packages/client/src/os.ts')
| -rw-r--r-- | packages/client/src/os.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/packages/client/src/os.ts b/packages/client/src/os.ts index 1c3c6d3e59..0f86a8520b 100644 --- a/packages/client/src/os.ts +++ b/packages/client/src/os.ts @@ -172,7 +172,6 @@ export async function popup(component: Component | typeof import('*.vue') | Prom const id = ++popupIdCount; const dispose = () => { - if (_DEV_) console.log('os:popup close', id, component, props, events); // このsetTimeoutが無いと挙動がおかしくなる(autocompleteが閉じなくなる)。Vueのバグ? setTimeout(() => { popups.value = popups.value.filter(popup => popup.id !== id); @@ -188,7 +187,6 @@ export async function popup(component: Component | typeof import('*.vue') | Prom id, }; - if (_DEV_) console.log('os:popup open', id, component, props, events); popups.value.push(state); return { |