use this._entry here (once updated by super.updateEntry)
This commit is contained in:
parent
5f99c2360c
commit
2321228981
1 changed files with 2 additions and 2 deletions
|
@ -117,16 +117,16 @@ export class BaseMessageTile extends SimpleTile {
|
|||
}
|
||||
|
||||
updateEntry(entry, param, tilesCreator) {
|
||||
this._updateReplyTileIfNeeded(tilesCreator);
|
||||
const action = super.updateEntry(entry, param, tilesCreator);
|
||||
if (action.shouldUpdate) {
|
||||
this._updateReactions();
|
||||
}
|
||||
this._updateReplyTileIfNeeded(tilesCreator);
|
||||
return action;
|
||||
}
|
||||
|
||||
_updateReplyTileIfNeeded(tilesCreator) {
|
||||
const replyEntry = entry.contextEntry;
|
||||
const replyEntry = this._entry.contextEntry;
|
||||
if (replyEntry) {
|
||||
// this is an update to contextEntry used for replyPreview
|
||||
const action = this._replyTile?.updateEntry(replyEntry, param, tilesCreator);
|
||||
|
|
Reference in a new issue