Add labels to chat form
This commit is contained in:
parent
371794fb34
commit
be6c41d0c5
1 changed files with 3 additions and 2 deletions
|
@ -17,16 +17,17 @@
|
||||||
{{ file.name }}
|
{{ file.name }}
|
||||||
</div>
|
</div>
|
||||||
<div class="buttons">
|
<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>
|
<i class="ph-upload ph-bold ph-lg"></i>
|
||||||
</button>
|
</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>
|
<i class="ph-smiley ph-bold ph-lg"></i>
|
||||||
</button>
|
</button>
|
||||||
<button
|
<button
|
||||||
class="send _button"
|
class="send _button"
|
||||||
:disabled="!canSend || sending"
|
:disabled="!canSend || sending"
|
||||||
:title="i18n.ts.send"
|
:title="i18n.ts.send"
|
||||||
|
:aria-label="i18n.ts.send"
|
||||||
@click="send"
|
@click="send"
|
||||||
>
|
>
|
||||||
<template v-if="!sending"
|
<template v-if="!sending"
|
||||||
|
|
Loading…
Reference in a new issue