tangled
alpha
login
or
join now
moth11.net
/
xcvr
2
fork
atom
frontend for xcvr appview
2
fork
atom
overview
issues
pulls
pipelines
maybe this one
moth11.net
6 months ago
1ecd5fda
d3331be9
+1
-1
1 changed file
expand all
collapse all
unified
split
src
lib
components
AutoGrowTextArea.svelte
+1
-1
src/lib/components/AutoGrowTextArea.svelte
···
54
if (selectionStart !== selectionEnd || selectionStart === null) {
55
return null;
56
}
57
-
const text = inputEl.innerText;
58
let colonPos = -1;
59
for (
60
let i = selectionStart - 1;
···
54
if (selectionStart !== selectionEnd || selectionStart === null) {
55
return null;
56
}
57
+
const text = inputEl.value;
58
let colonPos = -1;
59
for (
60
let i = selectionStart - 1;