mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-08-19 10:51:43 -07:00
Update copy and sidepanel (#1305)
* Update copy and sidepanel - modify map legend, add color key and circle stroke - add Higher ed to sidepanel - remove coercion of 0 to N/A on sidepanel - update snapshots * Make send feedback open in new tab
This commit is contained in:
parent
6e64134dc6
commit
41715ef6e6
11 changed files with 311 additions and 86 deletions
|
@ -8,7 +8,7 @@ interface IIndicator {
|
|||
}
|
||||
|
||||
export const readablePercentile = (percentile: number | null) => {
|
||||
return percentile ? Math.round(percentile * 100) : 'N/A';
|
||||
return percentile !== null ? Math.round(percentile * 100) : 'N/A';
|
||||
};
|
||||
|
||||
// Todo: Add internationalization to superscript ticket #582
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue