This is an automated email from the ASF dual-hosted git repository. rohit pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/cloudstack-primate.git
commit 46ee1bae3be2c1a3da52ceef807b325b7d99b9a4 Author: Rohit Yadav <[email protected]> AuthorDate: Mon Nov 4 12:29:35 2019 +0530 config: fix listing of ISOs Signed-off-by: Rohit Yadav <[email protected]> --- src/config/section/image.js | 3 ++- src/views/network/VpnDetails.vue | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config/section/image.js b/src/config/section/image.js index 0b4ee5f..937ff9a 100644 --- a/src/config/section/image.js +++ b/src/config/section/image.js @@ -25,8 +25,8 @@ export default { title: 'Templates', icon: 'save', permission: [ 'listTemplates' ], - resourceType: 'Template', params: { 'templatefilter': 'executable' }, + resourceType: 'Template', columns: ['name', 'ostypename', 'status', 'hypervisor', 'account', 'domain'], details: ['name', 'id', 'displaytext', 'checksum', 'hypervisor', 'format', 'ostypename', 'size', 'isready', 'passwordenabled', 'directdownload', 'isextractable', 'isdynamicallyscalable', 'ispublic', 'isfeatured', 'crosszones', 'type', 'account', 'domain', 'created'], tabs: [{ @@ -98,6 +98,7 @@ export default { title: 'ISOs', icon: 'usb', permission: [ 'listIsos' ], + params: { 'isofilter': 'executable' }, resourceType: 'ISO', columns: ['name', 'ostypename', 'account', 'domain'], details: ['name', 'id', 'displaytext', 'checksum', 'ostypename', 'size', 'bootable', 'isready', 'directdownload', 'isextractable', 'ispublic', 'isfeatured', 'crosszones', 'account', 'domain', 'created'], diff --git a/src/views/network/VpnDetails.vue b/src/views/network/VpnDetails.vue index d0c6213..a0b23ad 100644 --- a/src/views/network/VpnDetails.vue +++ b/src/views/network/VpnDetails.vue @@ -17,7 +17,7 @@ <template> <div> - TODO: IP configure view: firewall, pf, lb + TODO: VPN configure/detail tab view </div> </template>
