Skip to content

Commit

Permalink
NAS-131787: Improper payload on re-saving the form (#10888)
Browse files Browse the repository at this point in the history
  • Loading branch information
undsoft authored Oct 18, 2024
1 parent 59b1624 commit c481050
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ export class NetworkConfigurationComponent implements OnInit {
}

onSubmit(): void {
const values = this.form.value;
const values = { ...this.form.value };
let activity: NetworkConfigurationActivity;

if ([NetworkActivityType.Allow, NetworkActivityType.Deny].includes(values.outbound_network_activity)) {
Expand Down

0 comments on commit c481050

Please sign in to comment.