I am currently trying to identify the error in my code. Whenever I access /dashboard, it only loads the template from the first route, which is defined as SYSTEM_VARS.includes.general.root. However, it does display the console.log message inside the resolve of the state root.dashboard.home.
In order to address this issue, I have already included the ui-view directive in my index.html.
For further examination, please refer to my routes.js file.
The console has logged the following messages related to the routes:
State ROOT: Resolve root
Current State: DASHBOARD
Current State: DASHBOARD.HOME
Currently, the content of /dashboard state's template is just an
<h1>DASHBOARD HOME</h1>
for testing purposes.
In summary, the template and controller for the /dashboard state are not being loaded as expected.