Skip to content

Commit

Permalink
Reset tabSectionContents key on d2w context to prevent stale tab sect…
Browse files Browse the repository at this point in the history
…ion configurations getting reused.
  • Loading branch information
fbarthez authored and darkv committed Oct 13, 2015
1 parent b0596cf commit b11de56
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ public D2WContext d2wContext() {
_cachedEntity = result.entity();
} else if (ObjectUtils.notEqual(_cachedEntity, result.entity())) {
clearTabSectionsContents();
_cachedEntity = result.entity();
result.takeValueForKey(null, "tabSectionsContents");
_cachedEntity = result.entity();
}
return super.d2wContext();
}
Expand Down

0 comments on commit b11de56

Please sign in to comment.