Skip to content

Commit

Permalink
🔨 don't override OWID regions column name
Browse files Browse the repository at this point in the history
  • Loading branch information
danyx23 committed Nov 18, 2024
1 parent b8c6364 commit a1a5928
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -618,9 +618,8 @@ const columnDefFromOwidVariable = (
shortName,
} = variable

// Without this the much used var 123 appears as "Countries Continent". We could rename in Grapher but not sure the effects of that.
const isContinent = isContinentsVariableId(variable.id)
const name = isContinent ? "Continent" : variable.name
const name = variable.name

// The column's type
const type = isContinent
Expand Down

0 comments on commit a1a5928

Please sign in to comment.