Skip to content

Commit 6a50479

Browse files
committed
fiks versionId som egentlig er nodeId
1 parent 2205c4b commit 6a50479

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

xp-archive/client/contentView/ContentView.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import style from './ContentView.module.css';
1111
const getDisplayComponent = (viewVariant: ViewVariant, data?: ContentServiceResponse | null) => {
1212
if (!data) return null;
1313
const components: Record<ViewVariant, React.ReactElement> = {
14-
html: <HtmlView versionId={data.json._id} locale={data.json.language} />,
14+
html: <HtmlView nodeId={data.json._id} locale={data.json.language} />,
1515
filepreview: <FilePreviewWrapper content={data.json} />,
1616
pdf: <PdfExport versions={data.versions} />,
1717
};

xp-archive/client/contentView/htmlView/HtmlView.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ import { xpArchiveConfig } from '@common/shared/siteConfigs';
55
import { Button, Loader } from '@navikt/ds-react';
66

77
type Props = {
8-
versionId: string;
8+
nodeId: string;
99
locale: string;
1010
};
1111

12-
export const HtmlView = ({ versionId, locale }: Props) => {
12+
export const HtmlView = ({ nodeId, locale }: Props) => {
1313
const [isLoading, setIsLoading] = useState(true);
14-
const htmlPath = `${xpArchiveConfig.basePath}/html/${versionId}/${locale || ''}`;
14+
const htmlPath = `${xpArchiveConfig.basePath}/html/${nodeId}/${locale || ''}`;
1515

1616
return (
1717
<div className={style.wrapper}>

0 commit comments

Comments
 (0)