Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Commit

Permalink
FO-2639 Tekstjustering på ikke tilgang til CV alertstripe
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexGaard committed Dec 17, 2019
1 parent b84a604 commit cd4d4c2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 9 deletions.
7 changes: 6 additions & 1 deletion src/components/paneler/innhold/cv/cv-panel-innhold.less
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,12 @@
}

.cv-ikke-synlig {
width: 100%; }
width: 100%;
}

.cv-alert-ikke-tilgang .alertstripe__tekst {
max-width: 42rem;
}

@media (min-width: @screen-md-min) {
.cv-sammendrag {
Expand Down
16 changes: 8 additions & 8 deletions src/components/paneler/innhold/cv/cv-panel-innhold.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ import { useFetchAktorId, useFetchCvOgJobbprofil, useFetchUnderOppfolging } from
import { Feilmelding, Laster } from '../../../felles/fetch';
import { hasError, isPending } from '@nutgaard/use-fetch';
import { hasData } from '../../../../rest/utils';
import './cv-panel-innhold.less';
import {CvIkkeSynligInfo} from "./cv-ikke-synlig-info";
import { CvIkkeSynligInfo } from './cv-ikke-synlig-info';
import { SynlighetForArbeidsgiver } from './synlighet-for-arbeidsgiver';
import './cv-panel-innhold.less';

const CvPanelInnhold = () => {
const {fnr} = useAppStore();
Expand Down Expand Up @@ -59,14 +59,14 @@ const CvPanelInnhold = () => {
);
} else if (cvOgJobbprofil.statusCode === 403 || cvOgJobbprofil.statusCode === 401) {
return (
<AlertStripeInfo>
Du har ikke tilgang til å se CV for denne brukeren. Årsaker kan være
<AlertStripeInfo className="cv-alert-ikke-tilgang">
Du kan ikke se CV-en, be brukeren om å:
<ul>
<li>
Bruker må informeres om NAVs behandlingsgrunnlag før veileder får tilgang.
Be bruker gå inn på nav.no og oppdatere CV'en sin.
</li>
<li>logge inn på arbeidsplassen.no</li>
<li>lese teksten om at du må dele CV-en med NAV</li>
<li>gå videre og gjennomføre det tjenesten ber om</li>
</ul>
Ved å gjøre dette får brukeren informasjon om behandlingsgrunnlaget, og du vil se CV-en.
</AlertStripeInfo>
);
} else if (!hasData(cvOgJobbprofil)) {
Expand Down

0 comments on commit cd4d4c2

Please sign in to comment.