Skip to content

Commit

Permalink
update Diacom to Dicom
Browse files Browse the repository at this point in the history
  • Loading branch information
craigrbarnes committed Jan 28, 2025
1 parent c0e2bd2 commit 176fa85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/bih/explorer.json
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@
"title": "DICOM Viewer URL",
"type": "link",
"width" : "32px",
"cellRenderFunction": "DiacomLink"
"cellRenderFunction": "DicomLink"
},
"subject_id": {
"title": "Subject ID"
Expand Down
3 changes: 1 addition & 2 deletions src/lib/CohortBuilder/CustomCellRenderers.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ const RenderLinkCell = (
};


const RenderDicomLink = ({ cell }: CellRendererFunctionProps) => {
if (!cell.getValue() || cell.getValue() === '') {

const RenderDicomLink = ({ cell }: CellRendererFunctionProps) => {
if (!cell?.getValue() || cell?.getValue() === '') {
return <span></span>;
Expand Down

0 comments on commit 176fa85

Please sign in to comment.