tangled
alpha
login
or
join now
moth11.net
/
xcvr
2
fork
atom
frontend for xcvr appview
2
fork
atom
overview
issues
pulls
pipelines
only return appropriate emoji query
moth11.net
6 months ago
82f7b553
4b92ed58
+3
-1
1 changed file
expand all
collapse all
unified
split
src
lib
components
AutoGrowTextArea.svelte
+3
-1
src/lib/components/AutoGrowTextArea.svelte
···
71
71
if (colonPos === -1) {
72
72
return null;
73
73
}
74
74
-
return text.slice(colonPos, selectionStart);
74
74
+
const res = text.slice(colonPos + 1, selectionStart);
75
75
+
if (res.length < 3) return null;
76
76
+
return res;
75
77
}
76
78
</script>
77
79