Skip to content

Commit 0f3ee32

Browse files
Aktuelt vises ikke hvis innholdslisten er tom
1 parent 4330158 commit 0f3ee32

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

src/components/parts/frontpage-current-topics/FrontpageCurrentTopicsPart.tsx

+11-3
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,19 @@ export type PartConfigFrontpageCurrentTopics = {
2323
export const FrontpageCurrentTopicsPart = ({
2424
config,
2525
}: PartComponentProps<PartType.FrontpageCurrentTopics>) => {
26-
const { language } = usePageContentProps();
26+
const { language, editorView } = usePageContentProps();
2727
const { contentList, title, link, bgColor, itemColor } = config;
2828

29-
if (!contentList?.data.sectionContents) {
30-
return <EditorHelp text={'Velg en innholdsliste'} />;
29+
if (
30+
!contentList ||
31+
!contentList.data.sectionContents ||
32+
contentList.data.sectionContents.length === 0
33+
) {
34+
if (!!editorView) {
35+
return <EditorHelp text={'Velg en innholdsliste'} />;
36+
} else {
37+
return null;
38+
}
3139
}
3240

3341
return (

0 commit comments

Comments
 (0)