fix(client): fix varaible textarea setRange bug (#2862)

This commit is contained in:
Junyi 2023-10-19 16:02:52 +08:00 committed by GitHub
parent 0e9ab35254
commit 9cbae661b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -229,6 +229,7 @@ export function TextArea(props) {
const sel = window.getSelection?.();
if (sel) {
const children = Array.from(current.childNodes) as HTMLElement[];
if (children.length) {
if (range[0] === -1) {
if (range[1]) {
nextRange.setStartAfter(children[range[1] - 1]);
@ -243,6 +244,7 @@ export function TextArea(props) {
} else {
nextRange.setEnd(children[range[2]], range[3]);
}
}
nextRange.collapse(true);
sel.removeAllRanges();
sel.addRange(nextRange);