This is an automated email from the ASF dual-hosted git repository. dahn pushed a commit to branch 4.20 in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.20 by this push: new 50a54dde5cc Make Description as optional in network acl list (#10343) 50a54dde5cc is described below commit 50a54dde5ccd9c9fe0a2dd4b067843712a6b8de5 Author: Manoj Kumar <manojkr.it...@gmail.com> AuthorDate: Fri Feb 7 19:10:06 2025 +0530 Make Description as optional in network acl list (#10343) --- ui/src/views/network/VpcTab.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/src/views/network/VpcTab.vue b/ui/src/views/network/VpcTab.vue index 9090654b183..5c0838ff7e0 100644 --- a/ui/src/views/network/VpcTab.vue +++ b/ui/src/views/network/VpcTab.vue @@ -727,8 +727,7 @@ export default { break case 'networkAcl': this.rules = { - name: [{ required: true, message: this.$t('label.required') }], - description: [{ required: true, message: this.$t('label.required') }] + name: [{ required: true, message: this.$t('label.required') }] } this.modals.networkAcl = true break