Skip to content

Commit

Permalink
ipv4_subnet does not display properly. fixes inex#783.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickhilliard authored and barryo committed Jul 4, 2022
1 parent 4cf3afc commit 40d4805
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Interfaces/CoreBundleController.php
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public function edit( Request $r, CoreBundle $cb ): View
'cost' => $r->old('cost', $cb->cost ),
'preference' => $r->old('preference', $cb->preference ),
'type' => $r->old('type', $cb->type ),
'subnet' => $r->old('subnet', $cb->ipv4_subnet ),
'ipv4_subnet' => $r->old('ipv4_subnet', $cb->ipv4_subnet ),
'enabled' => $r->old('enabled', $cb->enabled ),
'bfd' => $r->old('bfd', $cb->bfd ),
'stp' => $r->old('stp', $cb->stp ),
Expand Down

0 comments on commit 40d4805

Please sign in to comment.