Skip to content

Commit

Permalink
Fikset inst-visning
Browse files Browse the repository at this point in the history
  • Loading branch information
betsytraran committed Jan 9, 2025
1 parent 14f21a9 commit 459c9f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@ export type InstTypes = {
institusjonstype: string
varighet?: string
startdato: string
forventetSluttdato?: string
sluttdato: string
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ export const Inst = ({ inst }: InstProps) => {
value={opphold.varighet && showLabel('varighet', opphold.varighet)}
/>
<TitleValue title="Startdato" value={formatDate(opphold.startdato)} />
<TitleValue
title="Forventet sluttdato"
value={formatDate(opphold.forventetSluttdato)}
/>
<TitleValue title="Sluttdato" value={formatDate(opphold.sluttdato)} />
</React.Fragment>
)
Expand Down

0 comments on commit 459c9f8

Please sign in to comment.