diff --git a/src/components/data_search/DatasetSearchTableConstants.tsx b/src/components/data_search/DatasetSearchTableConstants.tsx index 52f6a78b4..46c369e3c 100644 --- a/src/components/data_search/DatasetSearchTableConstants.tsx +++ b/src/components/data_search/DatasetSearchTableConstants.tsx @@ -58,7 +58,6 @@ export const makeStudyTableHeaders = (datasets: DatasetTerm[], selected: number[ interface StudyCellWidths{ selected: number; studyName: string; - description: string; participants: string; phenotype: string; species: string; @@ -69,10 +68,9 @@ export const makeStudyTableHeaders = (datasets: DatasetTerm[], selected: number[ selected: 50, // subtract the selected column width studyName: 'calc(25% - 50px)', - description: '20%', participants: '10%', - phenotype: '15%', - species: '10%', + phenotype: '20%', + species: '15%', piName: '10%', dataCustodians: '20%' }; @@ -127,20 +125,6 @@ export const makeStudyTableHeaders = (datasets: DatasetTerm[], selected: number[ label: datasets[0].study.studyName }) }, - { - label: 'Description', - sortable: true, - cellStyle: makeHeaderStyle(studyCellWidths.description), - cellDataFn: (datasets) => ({ - data: - {trimNewlineCharacters(datasets[0].study.description)} - , - value: datasets[0].study.description, - id: `${datasets[0].study.studyId}-study-description`, - style: makeRowStyle(studyCellWidths.description), - label: datasets[0].study.description - }) - }, { label: 'Participants', sortable: true,