Skip to content

Commit

Permalink
fail only one chart
Browse files Browse the repository at this point in the history
  • Loading branch information
sophiamersmann committed May 6, 2024
1 parent 71454b7 commit 83ff54b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/@ourworldindata/grapher/src/core/Grapher.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1383,7 +1383,8 @@ export class Grapher
}

@computed get currentTitle(): string {
let text = "(updated) " + this.displayTitle.trim()
let text =
(this.id === 64 ? "(updated) " : "") + this.displayTitle.trim()

// helper function to add an annotation fragment to the title
// only adds a comma if the text does not end with a question mark
Expand Down

0 comments on commit 83ff54b

Please sign in to comment.