forked from mystiq/hydrogen-web
cleanup
This commit is contained in:
parent
e69a39d6a7
commit
6697bb8ddf
1 changed files with 1 additions and 2 deletions
|
@ -133,8 +133,7 @@ export class BaseMessageTile extends SimpleTile {
|
||||||
const action = this._replyTile?.updateEntry(replyEntry, param);
|
const action = this._replyTile?.updateEntry(replyEntry, param);
|
||||||
if (action?.shouldReplace || !this._replyTile) {
|
if (action?.shouldReplace || !this._replyTile) {
|
||||||
this.disposeTracked(this._replyTile);
|
this.disposeTracked(this._replyTile);
|
||||||
const tileClassForEntry = this._options.tileClassForEntry;
|
const ReplyTile = this._options.tileClassForEntry(replyEntry);
|
||||||
const ReplyTile = tileClassForEntry(replyEntry);
|
|
||||||
if (ReplyTile) {
|
if (ReplyTile) {
|
||||||
this._replyTile = new ReplyTile(replyEntry, this._options);
|
this._replyTile = new ReplyTile(replyEntry, this._options);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue