Simon Hunt

GUI -- Fix topology message handler to only store the "memento" part of the updateMeta message.

Change-Id: Ia3d55acbb623b5750405669c0e3b7f0db1b136d2
......@@ -313,7 +313,7 @@ public abstract class TopologyMessages {
// Updates meta UI information for the specified object.
protected void updateMetaUi(ObjectNode event) {
ObjectNode payload = payload(event);
metaUi.put(string(payload, "id"), payload);
metaUi.put(string(payload, "id"), (ObjectNode) payload.path("memento"));
}
// Returns device details response.
......