default device templates to use the default network

This commit is contained in:
Rachel Powers
2024-04-17 15:04:41 -07:00
parent 1fafed06a2
commit 9957be1b45

View File

@@ -6,7 +6,7 @@ export function connectionFromDeviceDBConnection(conn: DeviceDBConnection): Conn
if (CableNetworkTypes.includes(conn.typ)) { if (CableNetworkTypes.includes(conn.typ)) {
return { return {
CableNetwork: { CableNetwork: {
net: undefined, net: window.VM?.ic10vm.defaultNetwork,
typ: conn.typ typ: conn.typ
} }
}; };