Skip to content

Commit

Permalink
Fix grammatical error
Browse files Browse the repository at this point in the history
Replace "Some systems experiencing issues" with "Some systems may be experiencing issues"
  • Loading branch information
imlayered authored Aug 19, 2024
1 parent c3960ea commit 55f4072
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function updateOverallStatus(services) {
let statusText = 'All systems operational';
let statusIcon = '✓'; // Checkmark for operational status
if (overallStatus === 'Degraded') {
statusText = 'Some systems experiencing issues';
statusText = 'Some systems may be experiencing issues';
statusIcon = '!'; // Exclamation mark for degraded status
} else if (overallStatus === 'Issue') {
statusText = 'Major outage detected';
Expand Down Expand Up @@ -212,4 +212,4 @@ function calculateGroupStatus(serviceGroup) {
} else {
return 'Degraded';
}
}
}

0 comments on commit 55f4072

Please sign in to comment.