diff --git a/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx b/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx index 87ef58a4f..10b3eff38 100644 --- a/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx +++ b/application/frontend/src/pages/GapAnalysis/GapAnalysis.tsx @@ -18,6 +18,7 @@ import { LoadingAndErrorIndicator } from '../../components/LoadingAndErrorIndica import { useEnvironment } from '../../hooks'; import { GapAnalysisPathStart } from '../../types'; import { getDocumentDisplayName } from '../../utils'; +import { getInternalUrl } from '../../utils/document'; const GetSegmentText = (segment, segmentID) => { let textPart = segment.end; @@ -66,7 +67,7 @@ const GetResultLine = (path, gapAnalysis, key) => { let segmentID = gapAnalysis[key].start.id; return (
{getDocumentDisplayName(gapAnalysis[key].start, true)}
diff --git a/application/frontend/src/utils/document.ts b/application/frontend/src/utils/document.ts index 1e01d2b35..efafd4c2e 100644 --- a/application/frontend/src/utils/document.ts +++ b/application/frontend/src/utils/document.ts @@ -47,7 +47,7 @@ export const groupBy =