-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2084 from navikt/dev
[PROD][KAIZEN-0] vis siste endret dato og kilde av kontonummer (#2082)
- Loading branch information
Showing
12 changed files
with
31 additions
and
250 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
126 changes: 0 additions & 126 deletions
126
src/app/personside/infotabs/utbetalinger/filter/NyEgendefinertDatoInputs.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
85 changes: 0 additions & 85 deletions
85
src/app/personside/visittkort-v2/body/endringsTekstTPS/EndringstekstTPS.test.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 6 additions & 12 deletions
18
...ody/endringsTekstTPS/EndringstekstTPS.tsx → ...ormasjon/bankkonto/KontoEndringstekst.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
src/app/personside/visittkort-v2/body/kontaktinformasjon/bankkonto/KontoKildeTekst.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import * as React from 'react'; | ||
import EtikettGraa from '../../../../../../components/EtikettGraa'; | ||
|
||
interface Props { | ||
kilde: string | null; | ||
} | ||
function KontoKildeekst({ kilde }: Props) { | ||
if (!kilde) { | ||
return null; | ||
} | ||
|
||
return <EtikettGraa>Kilde {kilde}</EtikettGraa>; | ||
} | ||
export default KontoKildeekst; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
export enum FeatureToggles { | ||
BrukSoknadsstatus = 'modiapersonoversikt.soknadsstatus-api', | ||
BrukUtvidetUtbetalingsSporring = 'modiapersonoversikt.utvidet-utbetalings-sporring', | ||
BrukWebworkerPaaInnLogging = 'modiapersonoversikt.web-worker-paa-innlogging', | ||
DebugMeldingsFunksjonalitet = 'modiapersonoversikt.ny-send-melding-container' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.