summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/MkEmojiPickerDialog.vue
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2025-05-22 12:24:52 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2025-05-22 12:24:52 +0900
commit74c857e23d1ff2350f90e1a6a6278920d74173bf (patch)
treee658f17b893ddf272429c4fe870a3e92228f692f /packages/frontend/src/components/MkEmojiPickerDialog.vue
parentBump version to 2025.5.1-alpha.4 (diff)
downloadmisskey-74c857e23d1ff2350f90e1a6a6278920d74173bf.tar.gz
misskey-74c857e23d1ff2350f90e1a6a6278920d74173bf.tar.bz2
misskey-74c857e23d1ff2350f90e1a6a6278920d74173bf.zip
refactor(frontend): src -> anchorElement
Diffstat (limited to 'packages/frontend/src/components/MkEmojiPickerDialog.vue')
-rw-r--r--packages/frontend/src/components/MkEmojiPickerDialog.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkEmojiPickerDialog.vue b/packages/frontend/src/components/MkEmojiPickerDialog.vue
index 662e2a118d..1627dc8760 100644
--- a/packages/frontend/src/components/MkEmojiPickerDialog.vue
+++ b/packages/frontend/src/components/MkEmojiPickerDialog.vue
@@ -12,7 +12,7 @@ SPDX-License-Identifier: AGPL-3.0-only
:hasInteractionWithOtherFocusTrappedEls="true"
:transparentBg="true"
:manualShowing="manualShowing"
- :src="src"
+ :anchorElement="anchorElement"
@click="modal?.close()"
@esc="modal?.close()"
@opening="opening"
@@ -44,7 +44,7 @@ import { prefer } from '@/preferences.js';
const props = withDefaults(defineProps<{
manualShowing?: boolean | null;
- src?: HTMLElement;
+ anchorElement?: HTMLElement;
showPinned?: boolean;
pinnedEmojis?: string[],
asReactionPicker?: boolean;