Skip to content

Commit

Permalink
Det viser seg at komponenten VirksomhetsnummerEllerTelefon brukes til…
Browse files Browse the repository at this point in the history
… å rendere visning av deltakernr
  • Loading branch information
mattiaslundmark committed Oct 31, 2023
1 parent c040b54 commit a4455ed
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ export const VirksomhetsnummerEllerTelefon: FunctionComponent<Props> = (props) =
</>
);
} else {
return null;
return (
<>
<BodyShort size="small" key={props.key}>
{storForbokstav(props.felt)}: {props.verdi}
</BodyShort>
</>
);
}
};

Expand Down

0 comments on commit a4455ed

Please sign in to comment.