mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-05-02 04:40:02 +00:00

Move it away from the tab list in the Configuration entry to a submenu in preparation for adding PBS integration Signed-off-by: Stoiko Ivanov <s.ivanov@proxmox.com>
19 lines
328 B
JavaScript
19 lines
328 B
JavaScript
Ext.define('PMG.BackupConfiguration', {
|
|
extend: 'Ext.tab.Panel',
|
|
alias: 'widget.pmgBackupConfiguration',
|
|
|
|
title: gettext('Backup'),
|
|
|
|
border: false,
|
|
defaults: { border: false },
|
|
|
|
items: [
|
|
{
|
|
itemId: 'local',
|
|
title: gettext('Local Backup/Restore'),
|
|
xtype: 'pmgBackupRestore',
|
|
},
|
|
],
|
|
});
|
|
|