summaryrefslogtreecommitdiff
path: root/packages/client/src/components/ui
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-01-28 12:30:47 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-01-28 12:30:47 +0900
commit9ffab33037db0d83ce0aa0dd5d04ff0c70b815b6 (patch)
tree91b72179630a4c011aed00631a9e32792b1a0efb /packages/client/src/components/ui
parentfix (diff)
downloadmisskey-9ffab33037db0d83ce0aa0dd5d04ff0c70b815b6.tar.gz
misskey-9ffab33037db0d83ce0aa0dd5d04ff0c70b815b6.tar.bz2
misskey-9ffab33037db0d83ce0aa0dd5d04ff0c70b815b6.zip
fix(client): リアクション設定で絵文字ピッカーが開かないのを修正
Diffstat (limited to 'packages/client/src/components/ui')
-rw-r--r--packages/client/src/components/ui/modal.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/client/src/components/ui/modal.vue b/packages/client/src/components/ui/modal.vue
index e2f6996b16..3c3bb5c226 100644
--- a/packages/client/src/components/ui/modal.vue
+++ b/packages/client/src/components/ui/modal.vue
@@ -28,7 +28,7 @@ function getFixedContainer(el: Element | null): Element | null {
type ModalTypes = 'popup' | 'dialog' | 'dialog:top' | 'drawer';
const props = withDefaults(defineProps<{
- manualShowing?: boolean;
+ manualShowing?: boolean | null;
srcCenter?: boolean;
src?: HTMLElement;
preferType?: ModalTypes | 'auto';