This commit is contained in:
ThinaticSystem
2022-09-12 01:07:22 +09:00
committed by sim1222
parent 18f778a335
commit 070d91e16e
2 changed files with 4 additions and 4 deletions

View File

@ -4,7 +4,7 @@ import { popup } from '@/os';
class ReactionPicker {
private src: Ref<HTMLElement | null> = ref(null);
private manualShowing = ref(false);
private onChosen?: (reaction: string, withRenote: boolean) => void;
private onChosen?: ({ reaction: string, withRenote: boolean }) => void;
private onClosed?: () => void;
constructor() {
@ -18,7 +18,7 @@ class ReactionPicker {
manualShowing: this.manualShowing
}, {
done: results => {
this.onChosen!(results.reaction, results.withRenote);
this.onChosen!({ reaction: results.reaction, withRenote: results.withRenote });
},
close: () => {
this.manualShowing.value = false;