From b2e29931e8985cd36994b0efdd9adaa8612430e9 Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Mon, 5 Feb 2024 09:41:33 +0100 Subject: [PATCH] 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 @@
{{ $t('label.protocol') }}
{{ element.protocol }}
-
+
{{ $t('label.startport') }}
{{ element.startport }}
-
+
{{ $t('label.endport') }}
{{ element.endport }}
-
+
{{ $t('label.icmpcode') }}
{{ element.icmpcode }}
-
+
{{ $t('label.icmptype') }}
{{ element.icmptype }}