Do not fail on non-existing property

This commit is contained in:
D. Berge
2025-07-03 11:44:52 +02:00
parent 289d50d9c1
commit 0ef2e60d15

View File

@@ -473,7 +473,7 @@ export default {
},
reset () {
this.text_ = this.text.replaceAll("\r", "");
this.text_ = this?.text.replaceAll("\r", "");
}
},