Skip to content

Commit

Permalink
Revert "button variants i oppgavemodal"
Browse files Browse the repository at this point in the history
This reverts commit 145bfa1.
  • Loading branch information
vebnor committed Nov 18, 2024
1 parent 145bfa1 commit c1159a7
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions src/client/app/saksbehandler/sokeboks/OppgaveModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,13 @@ export function OppgaveModal(props: { oppgave: SøkeboksOppgaveDto; open: boolea
<BodyShort>Hva ønsker du å gjøre med oppgaven?</BodyShort>
</Modal.Body>
<Modal.Footer>
<Button type="button" onClick={() => åpneOppgave(props.oppgave)}>
Åpne oppgave
</Button>
{visÅpneOgReserverKnapp && (
<Button
type="button"
variant="primary"
variant="secondary"
loading={isLoadingReserverOppgave}
onClick={() => reserverOppgave(props.oppgave.oppgaveNøkkel)}
>
Expand All @@ -52,7 +55,7 @@ export function OppgaveModal(props: { oppgave: SøkeboksOppgaveDto; open: boolea
{visÅpneOgEndreReservasjonKnapp && (
<Button
type="button"
variant="primary"
variant="secondary"
loading={isLoadingEndreReservasjoner}
onClick={() =>
endreReservasjoner([
Expand All @@ -63,14 +66,6 @@ export function OppgaveModal(props: { oppgave: SøkeboksOppgaveDto; open: boolea
Reserver og åpne oppgave
</Button>
)}
<Button
type="button"
variant={visÅpneOgReserverKnapp || visÅpneOgEndreReservasjonKnapp ? 'secondary' : 'primary'}
onClick={() => åpneOppgave(props.oppgave)}
>
Åpne oppgave
</Button>

{visLeggTilbakeIKøKnapp && (
<Button
type="button"
Expand Down

0 comments on commit c1159a7

Please sign in to comment.