Skip to content

Commit

Permalink
Issue #260: prevent hide message bar when the entity is the same as p…
Browse files Browse the repository at this point in the history
…arent tab

EPL-571
  • Loading branch information
valenvivaldi committed Nov 30, 2023
1 parent 88f55bf commit 83f3503
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1698,7 +1698,7 @@ isc.OBStandardView.addProperties({
// at this point the time fields of the record are formatted in local time
localTime = true;
this.messageBar.hide();
if (this.parentView) {
if (this.parentView && (this.parentView.entity !== this.entity)) {
this.parentView.messageBar.hide();
}

Expand Down

0 comments on commit 83f3503

Please sign in to comment.