@@ -11,7 +11,7 @@ import {
11
11
} from "@databiosphere/findable-ui/lib/theme/common/typography" ;
12
12
import * as C from "../../../app/components/index" ;
13
13
import { bindSystemStatusResponse } from "../../../app/viewModelBuilders/azul/common/systemStatusMapper/systemStatusMapper" ;
14
- import { FLATTEN } from "../../common/constants" ;
14
+ import { FLATTEN , GIT_HUB_REPO_URL } from "../../common/constants" ;
15
15
import { SiteConfig } from "../../common/entities" ;
16
16
import { announcements } from "./announcements/announcements" ;
17
17
import { exportConfig } from "./export/export" ;
@@ -29,7 +29,6 @@ const BROWSER_URL = "https://explore.data.humancellatlas.dev.clevercanary.com";
29
29
const DATA_URL = "https://service.azul.data.humancellatlas.org" ;
30
30
const EXPORT_TO_TERRA_URL = "https://app.terra.bio" ;
31
31
const FONT_FAMILY_DIN = "'din-2014', sans-serif" ;
32
- const GIT_HUB_REPO_URL = "https://github.com/DataBiosphere/data-browser" ;
33
32
const HOME_PAGE_PATH = "/projects" ;
34
33
const ORG_URL = "https://www.humancellatlas.org" ;
35
34
const PAGINATION_PAGE_SIZE = "25" ;
@@ -39,7 +38,7 @@ export function makeConfig(
39
38
browserUrl : string ,
40
39
portalUrl : string ,
41
40
dataUrl : string ,
42
- gitHubUrl : string = GIT_HUB_REPO_URL ,
41
+ gitHubUrl : string ,
43
42
catalog : string = CATALOG
44
43
) : SiteConfig {
45
44
return {
@@ -205,6 +204,11 @@ export function makeConfig(
205
204
} ;
206
205
}
207
206
208
- const config : SiteConfig = makeConfig ( BROWSER_URL , PORTAL_URL , DATA_URL ) ;
207
+ const config : SiteConfig = makeConfig (
208
+ BROWSER_URL ,
209
+ PORTAL_URL ,
210
+ DATA_URL ,
211
+ GIT_HUB_REPO_URL
212
+ ) ;
209
213
210
214
export default config ;
0 commit comments