shwstppr commented on code in PR #11591:
URL: https://github.com/apache/cloudstack/pull/11591#discussion_r2416612747
##########
ui/src/views/network/IpAddressesTab.vue:
##########
@@ -302,6 +300,26 @@ export default {
}
},
inject: ['parentFetchData'],
+ computed: {
+ listApiParams () {
+ const params = {
+ zoneid: this.resource.zoneid,
+ domainid: this.resource.domainid,
+ account: this.resource.account,
+ forvirtualnetwork: true,
+ allocatedonly: false
+ }
+ if (['nsx', 'netris'].includes(this.zoneExtNetProvider?.toLowerCase())) {
+ params.forprovider = true
+ }
+ return params
+ },
+ listApiParamsForAssociate () {
+ const params = this.listApiParams
+ params.state = 'Free,Reserved'
Review Comment:
Thanks for checking @harikrishna-patnala. Will check and fix. Moving to
draft for now
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]