Update packages/client/src/pages/messaging/messaging-room.form.vue
Co-authored-by: Johann150 <johann.galle@protonmail.com>
This commit is contained in:
parent
1cf01679c5
commit
27cc8cd7df
@ -49,8 +49,8 @@ const props = defineProps<{
|
||||
let textEl = $ref<HTMLTextAreaElement>();
|
||||
let fileEl = $ref<HTMLInputElement>();
|
||||
|
||||
let text: string = $ref('');
|
||||
let file: Misskey.entities.DriveFile | null = $ref(null);
|
||||
let text = $ref<string>('');
|
||||
let file = $ref<Misskey.entities.DriveFile | null>(null);
|
||||
let sending = $ref(false);
|
||||
const typing = throttle(3000, () => {
|
||||
stream.send('typingOnMessaging', props.user ? { partner: props.user.id } : { group: props.group?.id });
|
||||
|
Loading…
Reference in New Issue
Block a user