diff --git a/src/fireedge/src/client/components/Forms/Vm/BackupForm/Steps/BasicConfiguration/index.js b/src/fireedge/src/client/components/Forms/Vm/BackupForm/Steps/BasicConfiguration/index.js index c81b8c9ab4..6d4e3b61f3 100644 --- a/src/fireedge/src/client/components/Forms/Vm/BackupForm/Steps/BasicConfiguration/index.js +++ b/src/fireedge/src/client/components/Forms/Vm/BackupForm/Steps/BasicConfiguration/index.js @@ -46,7 +46,9 @@ const Content = (props) => { const vmBackupsConfig = vm?.BACKUPS?.BACKUP_CONFIG || {} - const incrementalBackupImageId = vm?.BACKUPS?.BACKUP_IDS?.ID + const incrementalBackupImageId = [] + .concat(vm?.BACKUPS?.BACKUP_IDS?.ID) + ?.at(-1) const incrementalBackups = 'LAST_INCREMENT_ID' in vmBackupsConfig && vmBackupsConfig?.MODE === 'INCREMENT' &&