Skip to content

Commit

Permalink
Kodeverk: Slå opp HISTORIKK_ENDRET_FELT_VERDI_TYPE hardkodet (#6591)
Browse files Browse the repository at this point in the history
Dette er koder som er hardkodet i frontend
  • Loading branch information
thomashwi authored Sep 17, 2024
1 parent bdba59e commit a3baced
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,17 @@ export const findEndretFeltVerdi = (
const historikkFeltVerdiNavn = kodeverkNavnFraKodeFn(
verdi as string,
KodeverkType.HISTORIKK_ENDRET_FELT_VERDI_TYPE,
undefined,
);
if (historikkFeltVerdiNavn) {
return historikkFeltVerdiNavn;
}

const historikkFeltNavn = kodeverkNavnFraKodeFn(verdi as string, KodeverkType.HISTORIKK_ENDRET_FELT_TYPE);
const historikkFeltNavn = kodeverkNavnFraKodeFn(
verdi as string,
KodeverkType.HISTORIKK_ENDRET_FELT_TYPE,
undefined,
);
if (historikkFeltNavn) {
return historikkFeltNavn;
}
Expand Down

0 comments on commit a3baced

Please sign in to comment.