Skip to content
Snippets Groups Projects
Commit 9ffab330 authored by syuilo's avatar syuilo
Browse files

fix(client): リアクション設定で絵文字ピッカーが開かないのを修正

parent bb6b912a
No related branches found
No related tags found
No related merge requests found
...@@ -15,6 +15,7 @@ ...@@ -15,6 +15,7 @@
- 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正 - 投稿のNSFW画像を表示したあとにリアクションが更新されると画像が非表示になる問題を修正
- 「クリップ」ページが開かない問題を修正 - 「クリップ」ページが開かない問題を修正
- トレンドウィジェットが動作しないのを修正 - トレンドウィジェットが動作しないのを修正
- リアクション設定で絵文字ピッカーが開かないのを修正
## 12.102.1 (2022/01/27) ## 12.102.1 (2022/01/27)
### Bugfixes ### Bugfixes
......
...@@ -32,12 +32,12 @@ import MkEmojiPicker from '@/components/emoji-picker.vue'; ...@@ -32,12 +32,12 @@ import MkEmojiPicker from '@/components/emoji-picker.vue';
import { defaultStore } from '@/store'; import { defaultStore } from '@/store';
withDefaults(defineProps<{ withDefaults(defineProps<{
manualShowing?: boolean; manualShowing?: boolean | null;
src?: HTMLElement; src?: HTMLElement;
showPinned?: boolean; showPinned?: boolean;
asReactionPicker?: boolean; asReactionPicker?: boolean;
}>(), { }>(), {
manualShowing: false, manualShowing: null,
showPinned: true, showPinned: true,
asReactionPicker: false, asReactionPicker: false,
}); });
......
...@@ -28,7 +28,7 @@ function getFixedContainer(el: Element | null): Element | null { ...@@ -28,7 +28,7 @@ function getFixedContainer(el: Element | null): Element | null {
type ModalTypes = 'popup' | 'dialog' | 'dialog:top' | 'drawer'; type ModalTypes = 'popup' | 'dialog' | 'dialog:top' | 'drawer';
const props = withDefaults(defineProps<{ const props = withDefaults(defineProps<{
manualShowing?: boolean; manualShowing?: boolean | null;
srcCenter?: boolean; srcCenter?: boolean;
src?: HTMLElement; src?: HTMLElement;
preferType?: ModalTypes | 'auto'; preferType?: ModalTypes | 'auto';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment