mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-05-05 15:08:50 +00:00
10 lines
313 B
JavaScript
10 lines
313 B
JavaScript
Ext.define('PVE.form.CompressionSelector', {
|
|
extend: 'PVE.form.KVComboBox',
|
|
alias: ['widget.pveCompressionSelector'],
|
|
comboItems: [
|
|
['', PVE.Utils.noneText],
|
|
['lzo', 'LZO (' + gettext('fast') + ')'],
|
|
['gzip', 'GZIP (' + gettext('good') + ')']
|
|
]
|
|
});
|