1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-21 14:50:08 +03:00

F #5516: Fix Backup tab (#2317)

This commit is contained in:
Frederick Borges 2022-10-21 14:08:08 +02:00 committed by GitHub
parent 54b77c4308
commit 39ea4624f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,9 @@ const BackupsTable = (props) => {
return {
...result,
data: result?.data?.filter((backup) => backupsIds?.includes(backup.ID)),
data: result?.data?.filter((backup) =>
vm ? backupsIds?.includes(backup.ID) : true
),
}
},
})