This is an automated email from the ASF dual-hosted git repository. rohit pushed a commit to branch 4.18 in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/4.18 by this push: new b2e29931e89 UI: fix icmp code/type of ACL rule are not display if the value is 0 (#8589) b2e29931e89 is described below commit b2e29931e8985cd36994b0efdd9adaa8612430e9 Author: Wei Zhou <weiz...@apache.org> AuthorDate: Mon Feb 5 09:41:33 2024 +0100 UI: fix icmp code/type of ACL rule are not display if the value is 0 (#8589) --- ui/src/views/network/AclListRulesTab.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ui/src/views/network/AclListRulesTab.vue b/ui/src/views/network/AclListRulesTab.vue index 124d91ce399..a7fbdf41cb5 100644 --- a/ui/src/views/network/AclListRulesTab.vue +++ b/ui/src/views/network/AclListRulesTab.vue @@ -65,19 +65,19 @@ <div class="list__label">{{ $t('label.protocol') }}</div> <div>{{ element.protocol }}</div> </div> - <div class="list__col" v-if="element.startport"> + <div class="list__col" v-if="element.startport !== undefined"> <div class="list__label">{{ $t('label.startport') }}</div> <div>{{ element.startport }}</div> </div> - <div class="list__col" v-if="element.endport"> + <div class="list__col" v-if="element.endport !== undefined"> <div class="list__label">{{ $t('label.endport') }}</div> <div>{{ element.endport }}</div> </div> - <div class="list__col" v-if="element.icmpcode"> + <div class="list__col" v-if="element.icmpcode !== undefined"> <div class="list__label">{{ $t('label.icmpcode') }}</div> <div>{{ element.icmpcode }}</div> </div> - <div class="list__col" v-if="element.icmptype"> + <div class="list__col" v-if="element.icmptype !== undefined"> <div class="list__label">{{ $t('label.icmptype') }}</div> <div>{{ element.icmptype }}</div> </div>