Skip to content

Commit

Permalink
Merge branch 'master' into validation
Browse files Browse the repository at this point in the history
  • Loading branch information
lucabruno91 committed Mar 25, 2024
2 parents 353720d + b649eb1 commit fbd2dca
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export function Communications({ communications }) {
if (!communications) return []

const data = communications.map((p) => ({
id: t(`labels:${p.id.toLowerCase()}`),
id: p.id.toLowerCase() == 'none' ? t('labels:public') : t(`labels:${p.id.toLowerCase()}`),
value: p.value,
valueColor: EmergencyColorMap.Communication
}))
Expand Down

0 comments on commit fbd2dca

Please sign in to comment.