ResourceEdit.js: use correct filed label

This commit is contained in:
Dietmar Maurer 2016-02-23 16:46:15 +01:00
parent 4a218fd947
commit 69a30784fc

View File

@ -448,10 +448,10 @@ Ext.define('PVE.lxc.MountPointInputPanel', {
xtype: 'textfield', xtype: 'textfield',
name: 'mp', name: 'mp',
value: '', value: '',
emptyText: gettext('Path'), emptyText: gettext('/some/path'),
allowBlank: false, allowBlank: false,
hidden: isroot, hidden: isroot,
fieldLabel: gettext('/some/path'), fieldLabel: gettext('Path'),
}); });
}; };