Skip to content

Commit

Permalink
color scale fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nofurtherinformation committed Jul 1, 2024
1 parent 89e9821 commit 6e78f84
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions utils/data/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -325,15 +325,15 @@ export const tooltipConfig: Array<{
label: string
column?: (typeof primaryColumns)[number]
lead?: boolean
invert?: boolean
inverted?: boolean
maxOf?: (typeof primaryColumns)[number][]
minOf?: (typeof primaryColumns)[number][]
formatter?: (value: number) => string
}> = [
{
label: "Market Concentration",
column: "hhi_2023_percentile",
invert: true,
inverted: true,
lead: true,
formatter: wholeNumber.format,
},
Expand All @@ -347,13 +347,13 @@ export const tooltipConfig: Array<{
label: "Econmic Disadvantage",
column: "ADI_NATRANK",
lead: true,
invert: true,
inverted: true,
formatter: wholeNumber.format,
},
{
label: "Racial Segregation",
column: "segregation_2023_percentile",
invert: true,
inverted: true,
lead: true,
formatter: wholeNumber.format,
},
Expand Down

0 comments on commit 6e78f84

Please sign in to comment.