Skip to content

Commit

Permalink
TSFF-2320: Vise hvem som har gjort vurdering i VURDER_RETT_ETTER_PLEI…
Browse files Browse the repository at this point in the history
…ETRENGENDES_DØD - 9202
  • Loading branch information
vebnor committed Oct 22, 2024
1 parent bda5053 commit 6f3c3ae
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions packages/fakta-om-barnet/src/types/RettVedDød.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,6 @@ import RettVedDødUtfallType from './RettVedDødType';
export interface RettVedDød {
vurdering: string;
rettVedDødType: RettVedDødUtfallType;
vurdertAv?: string;
vurdertTidspunkt?: string;
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { GreenCheckIcon } from '@navikt/ft-plattform-komponenter';
import React from 'react';
import { AssessedBy, GreenCheckIcon, LabelledContent } from '@navikt/ft-plattform-komponenter';
import { RettVedDød } from '../../../types/RettVedDød';
import RettVedDødUtfallType from '../../../types/RettVedDødType';

Expand All @@ -23,8 +22,8 @@ const RettVedDødVurderingsdetaljer = ({ rettVedDød }: RettVedDødVurderingsdet
<p className="my-0 ml-1.5">{getRettVedDødUtfallTekst()}</p>
</div>
<div className="mt-6">
<p className="font-semibold my-0 leading-6">Vurdering</p>
<p className="mt-2 mb-0">{rettVedDød.vurdering}</p>
<LabelledContent label="Vurdering" content={rettVedDød.vurdering} indentContent />
<AssessedBy ident={rettVedDød.vurdertAv} date={rettVedDød.vurdertTidspunkt} />
</div>
</>
);
Expand Down

1 comment on commit 6f3c3ae

@vebnor
Copy link
Collaborator Author

@vebnor vebnor commented on 6f3c3ae Oct 22, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

det var vel egentlig ikke meningen å pushe direkte på master, men det går nok fint med denne endringen

Please sign in to comment.