mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
chore(client): check textarea exists
This commit is contained in:
parent
4a55a4ec50
commit
9eef655f7a
1 changed files with 4 additions and 2 deletions
|
@ -341,8 +341,10 @@ function addTag(tag: string) {
|
|||
}
|
||||
|
||||
function focus() {
|
||||
textareaEl.focus();
|
||||
textareaEl.setSelectionRange(textareaEl.value.length, textareaEl.value.length);
|
||||
if (textareaEl) {
|
||||
textareaEl.focus();
|
||||
textareaEl.setSelectionRange(textareaEl.value.length, textareaEl.value.length);
|
||||
}
|
||||
}
|
||||
|
||||
function chooseFileFrom(ev) {
|
||||
|
|
Loading…
Reference in a new issue