diff --git a/resources/scripts/components/server/backups/BackupContainer.tsx b/resources/scripts/components/server/backups/BackupContainer.tsx index 99f1e6326..bd732d4f0 100644 --- a/resources/scripts/components/server/backups/BackupContainer.tsx +++ b/resources/scripts/components/server/backups/BackupContainer.tsx @@ -65,12 +65,12 @@ const BackupContainer = () => { }
- {(backupLimit > 0 && backups.items.length > 0) && + {(backupLimit > 0 && backups.pagination.total > 0) &&

- {backups.items.length} of {backupLimit} backups have been created for this server. + {backups.pagination.total} of {backupLimit} backups have been created for this server.

} - {backupLimit > 0 && backupLimit !== backups.items.length && + {backupLimit > 0 && backupLimit !== backups.pagination.total && }