Skip to content

Commit

Permalink
Fire container notifications of blueprint update
Browse files Browse the repository at this point in the history
When we were adding error status display, we forgot to fire changes
for inError and error fields, which manifested itself as a stale
container view.

This commit adds triggers for missing properties, which fixes the
display issues.
  • Loading branch information
Tadej Borovšak committed Mar 30, 2017
1 parent 78d3793 commit fedf7d1
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,8 @@ public void update(Container c) {
setBlueprint(c.blueprint);
}
fireChange("state", null, getState());
fireChange("inError", null, getState());
fireChange("error", null, getState());
}

@Override
Expand Down

0 comments on commit fedf7d1

Please sign in to comment.