File tree 2 files changed +4
-4
lines changed
xp-archive/client/contentView
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import style from './ContentView.module.css';
11
11
const getDisplayComponent = ( viewVariant : ViewVariant , data ?: ContentServiceResponse | null ) => {
12
12
if ( ! data ) return null ;
13
13
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 } /> ,
15
15
filepreview : < FilePreviewWrapper content = { data . json } /> ,
16
16
pdf : < PdfExport versions = { data . versions } /> ,
17
17
} ;
Original file line number Diff line number Diff line change @@ -5,13 +5,13 @@ import { xpArchiveConfig } from '@common/shared/siteConfigs';
5
5
import { Button , Loader } from '@navikt/ds-react' ;
6
6
7
7
type Props = {
8
- versionId : string ;
8
+ nodeId : string ;
9
9
locale : string ;
10
10
} ;
11
11
12
- export const HtmlView = ( { versionId , locale } : Props ) => {
12
+ export const HtmlView = ( { nodeId , locale } : Props ) => {
13
13
const [ isLoading , setIsLoading ] = useState ( true ) ;
14
- const htmlPath = `${ xpArchiveConfig . basePath } /html/${ versionId } /${ locale || '' } ` ;
14
+ const htmlPath = `${ xpArchiveConfig . basePath } /html/${ nodeId } /${ locale || '' } ` ;
15
15
16
16
return (
17
17
< div className = { style . wrapper } >
You can’t perform that action at this time.
0 commit comments