diff --git a/www/manager6/lxc/Config.js b/www/manager6/lxc/Config.js index fbaccefe..12a4b12d 100644 --- a/www/manager6/lxc/Config.js +++ b/www/manager6/lxc/Config.js @@ -200,7 +200,7 @@ Ext.define('PVE.lxc.Config', { }); } - if (caps.vms['VM.Snapshot']) { + if (caps.vms['VM.Snapshot'] || caps.vms['VM.Snapshot.Rollback']) { me.items.push({ title: gettext('Snapshots'), iconCls: 'fa fa-history', diff --git a/www/manager6/qemu/Config.js b/www/manager6/qemu/Config.js index 75454d8e..31cab970 100644 --- a/www/manager6/qemu/Config.js +++ b/www/manager6/qemu/Config.js @@ -234,7 +234,7 @@ Ext.define('PVE.qemu.Config', { }); } - if (caps.vms['VM.Snapshot'] && !template) { + if ((caps.vms['VM.Snapshot'] || caps.vms['VM.Snapshot.Rollback']) && !template) { me.items.push({ title: gettext('Snapshots'), iconCls: 'fa fa-history',