diff --git a/web/src/components/inputs/FormatedText.vue b/web/src/components/inputs/FormatedText.vue index 9aaf592..0771915 100644 --- a/web/src/components/inputs/FormatedText.vue +++ b/web/src/components/inputs/FormatedText.vue @@ -42,7 +42,7 @@ export default { const div = this.$refs.text; const range = document.createRange(); range.setStart(div.childNodes[0], this.selection.anchorOffset); - range.setEnd(div.childNodes[0], this.selection.focusOffset); + range.setEnd(div.childNodes[0], Math.min(this.selection.anchorOffset, div.childNodes[0].length)); this.selection.removeAllRanges(); this.selection.addRange(range); }