Skip to content

Commit 52ef71c

Browse files
committed
fix custom CC
1 parent 661a13b commit 52ef71c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/firewall/firewall.component.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,8 +115,8 @@
115115
</mat-form-field>
116116
<mat-form-field>
117117
<mat-select [(ngModel)]="app_cc_policy.action" placeholder="Action">
118-
<mat-option *ngFor="let action_value of enum_action_values;" [value]="action_value">
119-
{{getPolicyActionEnumString(action_value)}}
118+
<mat-option *ngFor="let action_value of enum_action_values;" [value]="action_value.value">
119+
{{ action_value.name }}
120120
</mat-option>
121121
</mat-select>
122122
</mat-form-field>

0 commit comments

Comments
 (0)