Skip to content

Commit 496e95e

Browse files
authored
Update CustomCellRenderers.tsx to DicomLink (#52)
1 parent f55e188 commit 496e95e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/lib/CohortBuilder/CustomCellRenderers.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { ActionIcon } from '@mantine/core';
66
import React from 'react';
77
import { FaExternalLinkAlt } from 'react-icons/fa';
88

9-
const RenderDiacomLink = ({ cell }: CellRendererFunctionProps) => {
9+
const RenderDicomLink = ({ cell }: CellRendererFunctionProps) => {
1010
if (!cell?.getValue() || cell?.getValue() === '') {
1111
return <span></span>;
1212
} else
@@ -22,7 +22,7 @@ const RenderDiacomLink = ({ cell }: CellRendererFunctionProps) => {
2222
export const registerCohortTableCustomCellRenderers = () => {
2323
ExplorerTableCellRendererFactory().registerRenderer(
2424
'link',
25-
'DiacomLink',
26-
RenderDiacomLink,
25+
'DicomLink',
26+
RenderDicomLink,
2727
);
2828
};

0 commit comments

Comments
 (0)