mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
auto select input field after attachment
This commit is contained in:
parent
37fc58865e
commit
658fca26e2
1 changed files with 2 additions and 1 deletions
|
@ -248,6 +248,7 @@ const speedChartData = computed(() => ({
|
|||
<button type="button" class="btn btn-outline-secondary border-0 rounded-pill me-1"
|
||||
data-bs-toggle="modal" data-bs-target="#emojiPickerModal"
|
||||
data-bs-backdrop="false"
|
||||
@click="$refs.chatModuleMessage.focus()"
|
||||
>
|
||||
<i
|
||||
id="emojipickerbutton"
|
||||
|
@ -260,7 +261,7 @@ const speedChartData = computed(() => ({
|
|||
|
||||
<!-- trigger file selection modal -->
|
||||
|
||||
<button type="button" class="btn btn-outline-secondary border-0 rounded-pill me-1" @click="triggerFileInput(), $event.target.blur()">
|
||||
<button type="button" class="btn btn-outline-secondary border-0 rounded-pill me-1" @click="triggerFileInput(), $event.target.blur(), $refs.chatModuleMessage.focus()">
|
||||
<i class="bi bi-paperclip" style="font-size: 1.2rem"></i>
|
||||
|
||||
</button>
|
||||
|
|
Loading…
Reference in a new issue