mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2025-03-04 07:18:50 -07:00
Add labels to chat form
This commit is contained in:
parent
495df8efe4
commit
a9e5101d12
1 changed files with 3 additions and 2 deletions
|
@ -17,16 +17,17 @@
|
|||
{{ file.name }}
|
||||
</div>
|
||||
<div class="buttons">
|
||||
<button class="_button" @click="chooseFile">
|
||||
<button class="_button" @click="chooseFile" :aria-label="i18n.t('attachFile')">
|
||||
<i class="ph-upload ph-bold ph-lg"></i>
|
||||
</button>
|
||||
<button class="_button" @click="insertEmoji">
|
||||
<button class="_button" @click="insertEmoji" :aria-label="i18n.t('chooseEmoji')">
|
||||
<i class="ph-smiley ph-bold ph-lg"></i>
|
||||
</button>
|
||||
<button
|
||||
class="send _button"
|
||||
:disabled="!canSend || sending"
|
||||
:title="i18n.ts.send"
|
||||
:aria-label="i18n.ts.send"
|
||||
@click="send"
|
||||
>
|
||||
<template v-if="!sending"
|
||||
|
|
Loading…
Add table
Reference in a new issue