By mistake (ugh, it was a pretty obvious one) I found the issue why the dashboard did not load all entities every time. ALL (!! :boom: ) API requests on the dashboard were executed as soon as the scripts were loaded. This resulted in issues as some DOM elements were not present when the callback for the requests was done.
all requests have been moved to a function that is called on documentReady (via query).
By mistake (ugh, it was a pretty obvious one) I found the issue why the dashboard did not load all entities every time. ALL (!! :boom: ) API requests on the dashboard were executed as soon as the scripts were loaded. This resulted in issues as some DOM elements were not present when the callback for the requests was done.
all requests have been moved to a function that is called on documentReady (via query).