slavkap commented on code in PR #9478: URL: https://github.com/apache/cloudstack/pull/9478#discussion_r1761279511
########## ui/src/views/storage/FormSchedule.vue: ########## @@ -323,6 +351,20 @@ export default { this.zoneLoading = false }) }, + fetchStoragePoolData () { + const params = {} + params.showicon = true + this.storagePoolsLoading = true + api('listStoragePools', params).then(json => { + const listStoragePools = json.liststoragepoolsresponse.storagepool + if (listStoragePools) { + this.storagePools = listStoragePools + this.storagePools = this.storagePools.filter(pool => pool.storagecapabilities.CAN_COPY_SNAPSHOT_BETWEEN_ZONES && pool.zoneid !== this.resource.zoneid) Review Comment: thanks, @sureshanaparti! I missed that this capability was used in the UI code either. Renamed in the latest commits -- 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