diff --git a/www/manager6/window/Snapshot.js b/www/manager6/window/Snapshot.js index 88f7248e..73a7de92 100644 --- a/www/manager6/window/Snapshot.js +++ b/www/manager6/window/Snapshot.js @@ -58,16 +58,6 @@ Ext.define('PVE.window.Snapshot', { } me.items = [ - { - xtype: 'displayfield', - userCls: 'pmx-hint', - name: 'fswarning', - hidden: true, - value: gettext('It is recommended to either include the RAM or enable the QEMU Guest Agent when taking a snapshot of a running VM. Otherwise the file system might be in an inconsistent state when the snapshot is taken.'), - bind: { - hidden: '{!shouldWarnAboutFS}', - }, - }, { xtype: me.isCreate ? 'textfield' : 'displayfield', name: 'snapname', @@ -102,6 +92,16 @@ Ext.define('PVE.window.Snapshot', { name: 'description', fieldLabel: gettext('Description') }, + { + xtype: 'displayfield', + userCls: 'pmx-hint', + name: 'fswarning', + hidden: true, + value: gettext('It is recommended to either include the RAM or use the QEMU Guest Agent when taking a snapshot of a running VM to avoid inconsistencies.'), + bind: { + hidden: '{!shouldWarnAboutFS}', + }, + }, { title: gettext('Settings'), hidden: me.isCreate,