Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
Signed-off-by: Florian Oberndörfer <florian8751t@gmail.com>
  • Loading branch information
flo0852 committed Feb 2, 2025
1 parent f15bdca commit 95acb5c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/backend/src/app/utils/mail/mail.service.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ describe('MailService', () => {
context: {
reason: 'Backup was scheduled but not started',
description:
`According to the schedule there should have been at backup started at ${alert.referenceDate.toString()}`,
`According to the schedule there should have been a backup started at ${alert.referenceDate.toString()}`,
info: alert.referenceDate.toString(),
infoColumnName: "Scheduled Date",
value: '-',
Expand Down
2 changes: 1 addition & 1 deletion apps/backend/src/app/utils/mail/mail.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export class MailService {
const missingBackupAlert = alert as MissingBackupAlertEntity;
infoColumnName = 'Scheduled Date';
reason = `Backup was scheduled but not started`;
description = `According to the schedule there should have been at backup started at ${missingBackupAlert.referenceDate.toString()}`;
description = `According to the schedule there should have been a backup started at ${missingBackupAlert.referenceDate.toString()}`;
info = missingBackupAlert.referenceDate.toString();
template = 'alertMailOneInfoRow';
break;
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/src/app/shared/utils/alertUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export class AlertUtilsService {
break;
case 'MISSING_BACKUP_ALERT':
const missingBackupAlert = alert as MissingBackupAlert;
description = `According to the schedule there should have been at backup started at ${this.formatDate(
description = `According to the schedule there should have been a backup started at ${this.formatDate(
missingBackupAlert.referenceDate
)}`;
break;
Expand Down

0 comments on commit 95acb5c

Please sign in to comment.