Skip to content

Commit

Permalink
Update column headers
Browse files Browse the repository at this point in the history
  • Loading branch information
markquintontulloch committed Jan 13, 2025
1 parent 17e414a commit 3332b64
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export const AffectedGenomicModelTable = () => {
},
{
field: 'primaryExternalId',
header: 'MOD Entity ID',
header: 'Primary External ID',
body: (rowData) => <IdTemplate id={rowData.primaryExternalId} />,
sortable: true,
filterConfig: FILTER_CONFIGS.primaryexternalidFilterConfig,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ export default function AlleleDetailPage() {

<IdentifierFormTemplate
identifier={alleleState.allele?.primaryExternalId}
label="MOD Entity ID"
label="Primary External ID"
widgetColumnSize={widgetColumnSize}
labelColumnSize={labelColumnSize}
fieldDetailsColumnSize={fieldDetailsColumnSize}
Expand Down
2 changes: 1 addition & 1 deletion src/main/cliapp/src/containers/allelesPage/AllelesTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -1018,7 +1018,7 @@ export const AllelesTable = () => {
},
{
field: 'primaryExternalId',
header: 'MOD Entity ID',
header: 'Primary External ID',
body: (rowData) => <IdTemplate id={rowData.primaryExternalId} />,
sortable: true,
filterConfig: FILTER_CONFIGS.primaryexternalidFilterConfig,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -716,7 +716,7 @@ export const mockSettingsData = {
multiSortMeta: [],
selectedColumnNames: [
'Curie',
'MOD Entity ID',
'Primary External ID',
'MOD Internal ID',
'Name',
'Symbol',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ export const ConstructsTable = () => {
},
{
field: 'primaryExternalId',
header: 'MOD Entity ID',
header: 'Primary External ID',
sortable: { isInEditMode },
body: (rowData) => <IdTemplate id={rowData.primaryExternalId} />,
filterConfig: FILTER_CONFIGS.primaryexternalidFilterConfig,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -805,7 +805,7 @@ export const mockSettingsData = {
multiSortMeta: [],
selectedColumnNames: [
'Unique ID',
'MOD Entity ID',
'Primary External ID',
'MOD Internal ID',
'Name',
'Taxon',
Expand Down
2 changes: 1 addition & 1 deletion src/main/cliapp/src/containers/genesPage/GenesTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ export const GenesTable = () => {
},
{
field: 'primaryExternalId',
header: 'MOD Entity ID',
header: 'Primary External ID',
sortable: true,
body: (rowData) => <IdTemplate id={rowData.primaryExternalId} />,
filterConfig: FILTER_CONFIGS.primaryexternalidFilterConfig,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ export const VariantsTable = () => {
},
{
field: 'primaryExternalId',
header: 'MOD Entity ID',
header: 'Primary External ID',
sortable: true,
body: (rowData) => <IdTemplate id={rowData.primaryExternalId} />,
filterConfig: FILTER_CONFIGS.primaryexternalidFilterConfig,
Expand Down

0 comments on commit 3332b64

Please sign in to comment.