Skip to content

Commit 296a380

Browse files
DaanHooglandyadvr
authored andcommitted
ui: fix project network listing failure in UI (#2536)
Fixes #2533
1 parent 8520324 commit 296a380

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

ui/scripts/network.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -732,9 +732,9 @@
732732
gateway: args.data.guestGateway
733733
});
734734
}
735-
if (args.data.guestGateway != null && args.data.guestGateway.length > 0) {
735+
if (args.data.guestNetmask != null && args.data.guestNetmask.length > 0) {
736736
$.extend(dataObj, {
737-
gateway: args.data.guestGateway
737+
netmask: args.data.guestNetmask
738738
});
739739
}
740740
if (args.data.externalId != null && args.data.externalId.length > 0) {

0 commit comments

Comments
 (0)