From c7aaedfc5d147b7d70a0ec93e13e60df3694af19 Mon Sep 17 00:00:00 2001 From: Wei Zhou Date: Thu, 1 Feb 2024 09:47:15 +0100 Subject: [PATCH] UI: fix icmp code/type of ACL rule are not display if the value is 0 --- 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 124d91ce3998..a7fbdf41cb57 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 }}