Commit 6ec52543 authored by Dietmar Maurer's avatar Dietmar Maurer

fix default values in backup dialog

parent 67ef4210
...@@ -36,14 +36,14 @@ Ext.define('PVE.qemu.Backup', { ...@@ -36,14 +36,14 @@ Ext.define('PVE.qemu.Backup', {
xtype: 'pvecheckbox', xtype: 'pvecheckbox',
name: 'compress', name: 'compress',
uncheckedValue: 0, uncheckedValue: 0,
value: 1, checked: true,
fieldLabel: 'Compress' fieldLabel: 'Compress'
}, },
{ {
xtype: 'pvecheckbox', xtype: 'pvecheckbox',
name: 'snapshot', name: 'snapshot',
uncheckedValue: 0, uncheckedValue: 0,
value: 1, checked: true,
fieldLabel: 'Snapshot mode' fieldLabel: 'Snapshot mode'
} }
] ]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment