diff --git a/dashboard/src/utils.js b/dashboard/src/utils.js index ebd8c8272..59f3e49a0 100644 --- a/dashboard/src/utils.js +++ b/dashboard/src/utils.js @@ -328,7 +328,7 @@ function eventlogDetails(eventLog, app = null, appIdContext = '') { return 'Backup cleaner started'; case ACTION_BACKUP_CLEANUP_FINISH: - return data.errorMessage ? 'Backup cleaner errored: ' + data.errorMessage : 'Backup cleaner removed ' + (data.removedBoxBackupPaths ? data.removedBoxBackupPaths.length : '0') + ' backups'; + return data.errorMessage ? 'Backup cleaner errored: ' + data.errorMessage : 'Backup cleaner removed ' + (data.removedBoxBackupPaths ? data.removedBoxBackupPaths.length : '0') + ' backup(s)'; case ACTION_BACKUP_SITE_ADD: return `New backup site ${data.name} added with provider ${data.provider} and format ${data.format}`;