From dd6915d0529cf05c623e9aa9fb9e7dc81939b616 Mon Sep 17 00:00:00 2001 From: Carl Downing Date: Sun, 30 Jul 2023 17:48:48 -0700 Subject: [PATCH] atleast --- CommonServer/Services/IncidentStateTimelineService.ts | 2 +- CommonServer/Services/MonitorStatusTimelineService.ts | 2 +- .../Services/ScheduledMaintenanceStateTimelineService.ts | 2 +- Model/Models/Team.ts | 2 +- backup.sh | 2 +- restore.sh | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CommonServer/Services/IncidentStateTimelineService.ts b/CommonServer/Services/IncidentStateTimelineService.ts index 19f968868a..b25ea128ed 100644 --- a/CommonServer/Services/IncidentStateTimelineService.ts +++ b/CommonServer/Services/IncidentStateTimelineService.ts @@ -246,7 +246,7 @@ export class Service extends DatabaseService { if (incidentStateTimeline.isOne()) { throw new BadDataException( - 'Cannot delete the only state timeline. Incident should have atleast one state in its timeline.' + 'Cannot delete the only state timeline. Incident should have at least one state in its timeline.' ); } } diff --git a/CommonServer/Services/MonitorStatusTimelineService.ts b/CommonServer/Services/MonitorStatusTimelineService.ts index 5118b40e21..0c3d0855a6 100644 --- a/CommonServer/Services/MonitorStatusTimelineService.ts +++ b/CommonServer/Services/MonitorStatusTimelineService.ts @@ -113,7 +113,7 @@ export class Service extends DatabaseService { if (monitorStatusTimeline.isOne()) { throw new BadDataException( - 'Cannot delete the only status timeline. Monitor should have atleast one status timeline.' + 'Cannot delete the only status timeline. Monitor should have at least one status timeline.' ); } } diff --git a/CommonServer/Services/ScheduledMaintenanceStateTimelineService.ts b/CommonServer/Services/ScheduledMaintenanceStateTimelineService.ts index c56bb9e31d..44e8887f3c 100644 --- a/CommonServer/Services/ScheduledMaintenanceStateTimelineService.ts +++ b/CommonServer/Services/ScheduledMaintenanceStateTimelineService.ts @@ -156,7 +156,7 @@ export class Service extends DatabaseService if (scheduledMaintenanceStateTimeline.isOne()) { throw new BadDataException( - 'Cannot delete the only state timeline. Scheduled Maintenance should have atleast one state in its timeline.' + 'Cannot delete the only state timeline. Scheduled Maintenance should have at least one state in its timeline.' ); } } diff --git a/Model/Models/Team.ts b/Model/Models/Team.ts index ba3d2d4f01..f8e2baf4f1 100644 --- a/Model/Models/Team.ts +++ b/Model/Models/Team.ts @@ -407,7 +407,7 @@ export default class Team extends BaseModel { type: TableColumnType.Boolean, title: 'Should have one member?', description: - 'Can this team have no members? Owner team should have atleast 1 member, other teams can have no members', + 'Can this team have no members? Owner team should have at least 1 member, other teams can have no members', }) @Column({ type: ColumnType.Boolean, diff --git a/backup.sh b/backup.sh index 980631fe28..ed7353938b 100644 --- a/backup.sh +++ b/backup.sh @@ -1,4 +1,4 @@ -# This file takes last 30 days backup. Make sure you run this file atleast once/day. +# This file takes last 30 days backup. Make sure you run this file at least once/day. # The backup will be in the format of db-(date of the month).backup # Before the backup, please make sure DATABASE_BACKUP_* ENV vars in config.env is set properly. diff --git a/restore.sh b/restore.sh index f78beed9bc..98962cf5ce 100644 --- a/restore.sh +++ b/restore.sh @@ -1,4 +1,4 @@ -# This file takes last 30 days backup. Make sure you run this file atleast once/day. +# This file takes last 30 days backup. Make sure you run this file at least once/day. # The backup will be in the format of db-(date of the month).backup # Before the backup, please make sure DATABASE_RESTORE_* ENV vars in config.env is set properly.