DaanHoogland commented on code in PR #11444: URL: https://github.com/apache/cloudstack/pull/11444#discussion_r2281469684
########## ui/src/components/view/ListView.vue: ########## @@ -21,7 +21,7 @@ :loading="loading" :columns="isOrderUpdatable() ? columns : columns.filter(x => x.dataIndex !== 'order')" :dataSource="items" - :rowKey="(record, idx) => record.id || record.name || record.usageType || idx + '-' + Math.random()" + :rowKey="(record, idx) => hasNoUniqueKey() ? (idx + '-' + Math.random()) : (record.id || record.name || record.usageType || idx + '-' + Math.random())" Review Comment: how about making the key/id be the concatenation of hostnam+”-“+port+”-“+domainid? -- 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