fix(client): 環境に依っては返信する際のカーソル位置が正しくない問題を修正

This commit is contained in:
syuilo
2022-02-08 23:53:01 +09:00
parent f4e28983a1
commit eb894c330f
2 changed files with 3 additions and 1 deletions

View File

@ -342,6 +342,7 @@ function addTag(tag: string) {
function focus() {
textareaEl.focus();
textareaEl.setSelectionRange(textareaEl.value.length, textareaEl.value.length);
}
function chooseFileFrom(ev) {