mirror of https://github.com/vector-im/riot-web
make sure the update callback gets a caret when calling reset
parent
4575aaa9f6
commit
124b7135cd
|
@ -149,6 +149,9 @@ export default class EditorModel {
|
||||||
|
|
||||||
reset(serializedParts, caret, inputType) {
|
reset(serializedParts, caret, inputType) {
|
||||||
this._parts = serializedParts.map(p => this._partCreator.deserializePart(p));
|
this._parts = serializedParts.map(p => this._partCreator.deserializePart(p));
|
||||||
|
if (!caret) {
|
||||||
|
caret = this.getPositionAtEnd();
|
||||||
|
}
|
||||||
// close auto complete if open
|
// close auto complete if open
|
||||||
// this would happen when clearing the composer after sending
|
// this would happen when clearing the composer after sending
|
||||||
// a message with the autocomplete still open
|
// a message with the autocomplete still open
|
||||||
|
|
Loading…
Reference in New Issue