5ce8f81f3b
we wrongly assumed, that no compression argument for vzdump meant 'no compression', instead it means 'lzo' this patch mirrors that behaviour on the gui Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
10 lines
314 B
JavaScript
10 lines
314 B
JavaScript
Ext.define('PVE.form.CompressionSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveCompressionSelector'],
|
|
comboItems: [
|
|
['0', PVE.Utils.noneText],
|
|
['lzo', 'LZO (' + gettext('fast') + ')'],
|
|
['gzip', 'GZIP (' + gettext('good') + ')']
|
|
]
|
|
});
|