Skip to content

Commit

Permalink
bugfix/alert-config-crashing (#252)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinJJackson authored Dec 16, 2024
1 parent 071d793 commit 4ab03a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hhd-ui",
"version": "0.18.7",
"version": "0.18.8",
"private": true,
"dependencies": {
"@ag-grid-community/client-side-row-model": "^30.0.3",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const AlertConfigDetailModal = connect(
locf_backfill,
locf_backfill_ms,
warn_rate_of_change,
} = opts;
} = opts || {};

const status = determineStatus(submittalsMissing, id);
const statusString = status === 'red' ? 'Missing' : status === 'green' ? 'On Time' : 'N/A';
Expand Down

0 comments on commit 4ab03a1

Please sign in to comment.