]> git.proxmox.com Git - pve-manager.git/blob - www/manager6/form/CacheTypeSelector.js
ui: hide 'no tags' field and edit icon without VM.Config.Options
[pve-manager.git] / www / manager6 / form / CacheTypeSelector.js
1 Ext.define('PVE.form.CacheTypeSelector', {
2 extend: 'Proxmox.form.KVComboBox',
3 alias: ['widget.CacheTypeSelector'],
4 comboItems: [
5 ['__default__', Proxmox.Utils.defaultText + " (" + gettext('No cache') + ")"],
6 ['directsync', 'Direct sync'],
7 ['writethrough', 'Write through'],
8 ['writeback', 'Write back'],
9 ['unsafe', 'Write back (' + gettext('unsafe') + ')'],
10 ['none', gettext('No cache')],
11 ],
12 });