chore(client): check textarea exists

This commit is contained in:
syuilo 2022-02-09 21:27:42 +09:00
parent 1461da309f
commit f512b29443
1 changed files with 4 additions and 2 deletions

View File

@ -341,8 +341,10 @@ function addTag(tag: string) {
} }
function focus() { function focus() {
textareaEl.focus(); if (textareaEl) {
textareaEl.setSelectionRange(textareaEl.value.length, textareaEl.value.length); textareaEl.focus();
textareaEl.setSelectionRange(textareaEl.value.length, textareaEl.value.length);
}
} }
function chooseFileFrom(ev) { function chooseFileFrom(ev) {