bernardodemarco opened a new pull request, #10651: URL: https://github.com/apache/cloudstack/pull/10651
### Description Currently, the dashboard for projects faces some inconsistencies for the amount of resources consumed by the project. They can be noticed when accessing the project's view, with an account that is not in the same domain as the project is. Therefore, in scenarios in which a `RootAdmin` accesses the dashboard of a project that belongs to any subdomain of the `ROOT` domain (e.g. `ROOT/d1`), the dashboard will display the project's storage metrics as `NaN` and `undefined` and the compute metrics will be omitted:  The root cause of the bug is that, when the project's attributes are fetched from the `listProjects` API, the parameter `listall` is not specified: https://github.com/apache/cloudstack/blob/ee94ae575b7bb28d3350b049454b0026db85c7d1/ui/src/views/dashboard/UsageDashboard.vue#L461-L469 As a consequence of that, the UI is not able to render the projects metrics. This PR fixes this bug. ### Types of changes - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] New feature (non-breaking change which adds functionality) - [X] Bug fix (non-breaking change which fixes an issue) - [ ] Enhancement (improves an existing feature and functionality) - [ ] Cleanup (Code refactoring and cleanup, that may add test cases) - [ ] build/CI - [ ] test (unit or integration test code) ### Feature/Enhancement Scale or Bug Severity #### Bug Severity - [ ] BLOCKER - [ ] Critical - [ ] Major - [ ] Minor - [X] Trivial ### Screenshots (if appropriate): - Before:  - After:  ### How Has This Been Tested? - Created a domain (`d1`), and an account (`d1`) and a project (`project-d1`) within it - Accessed the `project-d1` view with a `RootAdmin` account - Before applying the PR's changes, verified that the project's metrics were not correctly fetched and rendered - After applying the PR's changes, verified that the metrics were correctly fetched and rendered -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org