This is an automated email from the ASF dual-hosted git repository. pearl11594 pushed a commit to branch ghi11100-resource-count in repository https://gitbox.apache.org/repos/asf/cloudstack.git
commit 504cdb8549ce8d0eb0c7292bd0bf74794f9d28c2 Author: Pearl Dsilva <[email protected]> AuthorDate: Thu Jul 3 10:21:21 2025 -0400 Fix update resource count failure for domains --- ui/src/config/section/domain.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/src/config/section/domain.js b/ui/src/config/section/domain.js index e6807f06278..f41f346b6eb 100644 --- a/ui/src/config/section/domain.js +++ b/ui/src/config/section/domain.js @@ -125,10 +125,13 @@ export default { message: 'message.update.resource.count.domain', listView: true, dataView: true, - args: ['domainid'], + args: ['domainid', 'account'], mapping: { domainid: { value: (record) => { return record.id } + }, + account: { + value: (record) => { return store.getters.userInfo.account } } } },
