|
@@ -83,7 +83,7 @@ export function ruleCriteriaChips(rule: RuleRow) {
|
|
|
if (rule.port) chips.push({ label: 'Port', value: rule.port });
|
|
if (rule.port) chips.push({ label: 'Port', value: rule.port });
|
|
|
if (rule.sourceIP) chips.push({ label: 'Src IP', value: rule.sourceIP });
|
|
if (rule.sourceIP) chips.push({ label: 'Src IP', value: rule.sourceIP });
|
|
|
if (rule.sourcePort) chips.push({ label: 'Src Port', value: rule.sourcePort });
|
|
if (rule.sourcePort) chips.push({ label: 'Src Port', value: rule.sourcePort });
|
|
|
- if (rule.network) chips.push({ label: 'L4', value: rule.network });
|
|
|
|
|
|
|
+ if (rule.network) chips.push({ label: 'L4', value: rule.network.toUpperCase() });
|
|
|
if (rule.protocol) chips.push({ label: 'Protocol', value: rule.protocol });
|
|
if (rule.protocol) chips.push({ label: 'Protocol', value: rule.protocol });
|
|
|
if (rule.user) chips.push({ label: 'User', value: rule.user });
|
|
if (rule.user) chips.push({ label: 'User', value: rule.user });
|
|
|
if (rule.vlessRoute) chips.push({ label: 'VLESS', value: rule.vlessRoute });
|
|
if (rule.vlessRoute) chips.push({ label: 'VLESS', value: rule.vlessRoute });
|