Commit 75793729 authored by Dietmar Maurer's avatar Dietmar Maurer

fix bug #118: allow to edit ethX settings

parent c980c906
...@@ -24,6 +24,8 @@ Ext.define('PVE.node.NetworkEdit', { ...@@ -24,6 +24,8 @@ Ext.define('PVE.node.NetworkEdit', {
} else if (me.iftype === 'bond') { } else if (me.iftype === 'bond') {
me.subject = "Bond"; me.subject = "Bond";
iface_vtype = 'BondName'; iface_vtype = 'BondName';
} else if (me.iftype === 'eth' && !me.create) {
me.subject = gettext("Network Device");
} else { } else {
throw "no known network device type specified"; throw "no known network device type specified";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment