Skip to content

Commit

Permalink
feat: move resources to top of assembly side column (#222) (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterckx authored Jan 21, 2025
1 parent 076a09b commit 7cd75d2
Showing 1 changed file with 13 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,16 @@ export const sideColumn: ComponentsConfig = [
{
children: [
{
component: C.KeyValuePairs,
viewBuilder: V.buildGenomeDetails,
component: C.SectionTitle,
props: {
title: "Resources",
},
} as ComponentConfig<typeof C.SectionTitle>,
{
component: C.AnalysisPortals,
viewBuilder: V.buildGenomeAnalysisPortals,
} as ComponentConfig<
typeof C.KeyValuePairs,
typeof C.AnalysisPortals,
BRCDataCatalogGenome
>,
],
Expand All @@ -32,14 +38,14 @@ export const sideColumn: ComponentsConfig = [
{
component: C.SectionTitle,
props: {
title: "Resources",
title: "Assembly Details",
},
} as ComponentConfig<typeof C.SectionTitle>,
{
component: C.AnalysisPortals,
viewBuilder: V.buildGenomeAnalysisPortals,
component: C.KeyValuePairs,
viewBuilder: V.buildGenomeDetails,
} as ComponentConfig<
typeof C.AnalysisPortals,
typeof C.KeyValuePairs,
BRCDataCatalogGenome
>,
],
Expand Down

0 comments on commit 7cd75d2

Please sign in to comment.