1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-31 02:13:59 +02:00

Fix lint issues in emoji picker components (#8620)

* fix(client): fix lint issues in emoji picker components

* fix(client): switch argument naming for emoji picker section event
This commit is contained in:
Andreas Nedbal
2022-05-07 10:00:05 +02:00
committed by GitHub
parent a975a0971c
commit 7bd45e5729
3 changed files with 9 additions and 9 deletions

View File

@@ -25,8 +25,8 @@ withDefaults(defineProps<{
});
const emit = defineEmits<{
(e: 'chosen', v: any): void;
(e: 'closed'): void;
(ev: 'chosen', v: any): void;
(ev: 'closed'): void;
}>();
function chosen(emoji: any) {