Skip to content

Commit

Permalink
feat. Gå over til å bruke opphav istedenfor opprettetAvArbeidsgiver (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
eirikv authored Aug 14, 2024
1 parent efba6e3 commit 98f9414
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Expand } from '@navikt/ds-icons';
import { formatterDato } from '@/utils/datoUtils';
import { avtaleStatusTekst } from '@/messages';
import RadInfo from '@/komponenter/alleredeOpprettetTiltak/innholdsvisning/RadInfo';
import { storForbokstav } from '@/utils/stringUtils';

interface Props {
innhold: AlleredeRegistrertAvtale;
Expand Down Expand Up @@ -47,11 +48,7 @@ const AlleredeOpprettetAvtaleDetaljer: React.FC<Props> = ({ innhold }) => {
</Link>
<div className={cls.element('detalje-innhold-wrapper', seDetaljer ? 'open' : 'close')}>
<div className={cls.element('detalje-innhold')}>
<RadInfo
label={'Opprettet av:'}
info={innhold.opprettetAvArbeidsgiver ? 'Arbeidsgiver' : 'Veileder'}
infoNotBold={true}
/>
<RadInfo label={'Opprettet av:'} info={storForbokstav(innhold.opphav)} infoNotBold={true} />
<RadInfo
label={'Veileder ident:'}
info={innhold.veilederNavIdent ? innhold.veilederNavIdent : 'ikke satt'}
Expand Down
2 changes: 1 addition & 1 deletion src/types/avtale.ts
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ export interface AlleredeRegistrertAvtale {
bedriftNr: string;
veilederNavIdent: string;
status: AvtaleStatus;
opprettetAvArbeidsgiver: boolean;
opphav: 'VEILEDER' | 'ARBEIDSGIVER' | 'ARENA';
startDato: string;
sluttDato: string;
godkjentAvVeileder: string;
Expand Down

0 comments on commit 98f9414

Please sign in to comment.