mirror of
https://git.proxmox.com/git/proxmox-backup
synced 2025-08-15 02:14:10 +00:00
ui: datastore edit: fix emptytext for path field
It is a relative path for removable datastores. Signed-off-by: Fiona Ebner <f.ebner@proxmox.com>
This commit is contained in:
parent
0ca7833bc5
commit
87f2087789
@ -114,8 +114,10 @@ Ext.define('PBS.DataStoreEdit', {
|
|||||||
uuidEditField.setValue('');
|
uuidEditField.setValue('');
|
||||||
if (isRemovable) {
|
if (isRemovable) {
|
||||||
pathField.setFieldLabel(gettext('Path on Device'));
|
pathField.setFieldLabel(gettext('Path on Device'));
|
||||||
|
pathField.setEmptyText(gettext('A relative path'));
|
||||||
} else {
|
} else {
|
||||||
pathField.setFieldLabel(gettext('Backing Path'));
|
pathField.setFieldLabel(gettext('Backing Path'));
|
||||||
|
pathField.setEmptyText(gettext('An absolute path'));
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user