Skip to content

Commit

Permalink
Merge pull request #1433 from nickgros/PORTALS-3353
Browse files Browse the repository at this point in the history
  • Loading branch information
nickgros authored Dec 4, 2024
2 parents 6aef115 + 81a80e5 commit 25c09ba
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ const studyDetailsTabContent: DetailsPageSectionLayoutType[] = [
columnName={STUDY_TABLE_COLUMN_NAMES.ACK_CONTEXT}
/>
<MarkdownSynapseFromColumnData
columnName={STUDY_TABLE_COLUMN_NAMES.ACK_CONTEXT}
columnName={STUDY_TABLE_COLUMN_NAMES.ACKNOWLEDGEMENT}
MarkdownCollapseProps={{
title: 'Acknowledgement Statement',
textDescription: 'full statement',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,6 @@ export function DetailsPageContextConsumer(
<DetailsPageContext.Consumer>
{(context: DetailsPageContextType) => {
const value = getValue(context, columnName)
console.log(context, value)
return children({ context, value })
}}
</DetailsPageContext.Consumer>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function HeadlineWithLinkDerivedFromEntityId(props: {
return (
<HeadlineWithLink
{...rest}
title={`${props.entityTitlePrepend}${entityHeader?.name}`}
title={`${entityTitlePrepend}${entityHeader?.name ?? ''}`}
/>
)
}
Expand Down

0 comments on commit 25c09ba

Please sign in to comment.