We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f55e188 commit 496e95eCopy full SHA for 496e95e
src/lib/CohortBuilder/CustomCellRenderers.tsx
@@ -6,7 +6,7 @@ import { ActionIcon } from '@mantine/core';
6
import React from 'react';
7
import { FaExternalLinkAlt } from 'react-icons/fa';
8
9
-const RenderDiacomLink = ({ cell }: CellRendererFunctionProps) => {
+const RenderDicomLink = ({ cell }: CellRendererFunctionProps) => {
10
if (!cell?.getValue() || cell?.getValue() === '') {
11
return <span></span>;
12
} else
@@ -22,7 +22,7 @@ const RenderDiacomLink = ({ cell }: CellRendererFunctionProps) => {
22
export const registerCohortTableCustomCellRenderers = () => {
23
ExplorerTableCellRendererFactory().registerRenderer(
24
'link',
25
- 'DiacomLink',
26
- RenderDiacomLink,
+ 'DicomLink',
+ RenderDicomLink,
27
);
28
};
0 commit comments