Details
-
Type:
Bug
-
Status: Resolved (View Workflow)
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 16.0.0
-
Fix Version/s: 17.0.0
-
Component/s: Web UI - Dashboard
-
Security Level: Default (Default Security Scheme)
-
Labels:None
-
Sprint:Newts - Sprint 7
Description
The graph selection on the Vaadin dashboard does not show the right graphs when storeByFs is enabled.
This is caused by the fact that we're using:
m_resourceDao.getResourceById("node[" + nodeId + "]");
instead of:
m_resourceDao.getResourceForNode(node);
The later "does the right thing" when storeByFs is enabled.