Skip to content

Commit

Permalink
Merge pull request #4171 from owid:fix-explorer-admin-url
Browse files Browse the repository at this point in the history
🐛 fix explorer admin url
  • Loading branch information
danyx23 authored Nov 14, 2024
2 parents bf8b333 + 18b3267 commit 48dbf64
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/@ourworldindata/explorer/src/Explorer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ export class Explorer
),
bakedGrapherURL: this.bakedBaseUrl,
dataApiUrl: this.dataApiUrl,
adminBaseUrl: ADMIN_BASE_URL,
adminBaseUrl: this.adminBaseUrl,
hideEntityControls: this.showExplorerControls,
manuallyProvideData: false,
}
Expand Down Expand Up @@ -600,7 +600,7 @@ export class Explorer
),
bakedGrapherURL: this.bakedBaseUrl,
dataApiUrl: this.dataApiUrl,
adminBaseUrl: ADMIN_BASE_URL,
adminBaseUrl: this.adminBaseUrl,
hideEntityControls: this.showExplorerControls,
manuallyProvideData: false,
}
Expand Down Expand Up @@ -751,7 +751,7 @@ export class Explorer
...this.explorerProgram.grapherConfig,
bakedGrapherURL: this.bakedBaseUrl,
dataApiUrl: this.dataApiUrl,
adminBaseUrl: ADMIN_BASE_URL,
adminBaseUrl: this.adminBaseUrl,
hideEntityControls: this.showExplorerControls,
manuallyProvideData: true,
}
Expand Down

0 comments on commit 48dbf64

Please sign in to comment.