Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
feat(COR-1772): fixed misplaced bracket for the no_notification key (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
VWSCoronaDashboard30 authored Sep 4, 2023
1 parent 836ae28 commit b76b6eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/components/choropleth-legenda.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function ChoroplethLegenda({ title, thresholds, valueAnnotation, pageType
});
if (pageType === 'sewer' && i === 0 && x.threshold === 0) {
label = commonTexts.common.no_virus_particles_measured;
} else if (pageType === 'patienten-in-beeld' || (pageType === 'ziekenhuis-opnames' && i === 0 && x.threshold === 0)) {
} else if ((pageType === 'patienten-in-beeld' || pageType === 'ziekenhuis-opnames') && i === 0 && x.threshold === 0) {
label = commonTexts.common.no_notifications;
}

Expand Down

0 comments on commit b76b6eb

Please sign in to comment.