feat(xo-web/backup-ng/new): move compression in the advanced settings (#3281)
See #2711
This commit is contained in:
parent
ce21da4146
commit
d38ad3a17f
@ -11,6 +11,7 @@
|
||||
- [Health / Orphaned snapshot VDIs] Homogenize action buttons in table and enable bulk deletion [#3179](https://github.com/vatesfr/xen-orchestra/issues/3179) (PR [#3270](https://github.com/vatesfr/xen-orchestra/pull/3270))
|
||||
- [Health / Alarms] Homogenize action buttons in table and enable bulk deletion [#3179](https://github.com/vatesfr/xen-orchestra/issues/3179) (PR [#3271](https://github.com/vatesfr/xen-orchestra/pull/3271))
|
||||
- [Backup NG Overview] List the Backup NG job's modes [#3169](https://github.com/vatesfr/xen-orchestra/issues/3169) (PR [#3277](https://github.com/vatesfr/xen-orchestra/pull/3277))
|
||||
- [Backup NG form] Move "Use compression" checkbox in the advanced settings [#2711](https://github.com/vatesfr/xen-orchestra/issues/2711) (PR [#3281](https://github.com/vatesfr/xen-orchestra/pull/3281))
|
||||
|
||||
### Bug fixes
|
||||
|
||||
|
@ -599,17 +599,6 @@ export default [
|
||||
/>
|
||||
</FormGroup>
|
||||
)}
|
||||
{state.showCompression && (
|
||||
<label>
|
||||
<input
|
||||
checked={compression}
|
||||
name='compression'
|
||||
onChange={effects.setCheckboxValue}
|
||||
type='checkbox'
|
||||
/>{' '}
|
||||
<strong>{_('useCompression')}</strong>
|
||||
</label>
|
||||
)}
|
||||
</CardBlock>
|
||||
</Card>
|
||||
<FormFeedback
|
||||
@ -840,6 +829,19 @@ export default [
|
||||
/>
|
||||
</label>
|
||||
</FormGroup>
|
||||
{state.showCompression && (
|
||||
<FormGroup>
|
||||
<label>
|
||||
<strong>{_('useCompression')}</strong>{' '}
|
||||
<input
|
||||
checked={compression}
|
||||
name='compression'
|
||||
onChange={effects.setCheckboxValue}
|
||||
type='checkbox'
|
||||
/>
|
||||
</label>
|
||||
</FormGroup>
|
||||
)}
|
||||
</CardBlock>
|
||||
</Card>
|
||||
</Col>
|
||||
|
Loading…
Reference in New Issue
Block a user