Skip to content

Commit

Permalink
Merge pull request #1295 from navikt/disable-button-when-loading
Browse files Browse the repository at this point in the history
Forhindre opprettelse av dupliserte aktiviteter
  • Loading branch information
johatr authored Jul 30, 2024
2 parents db15d30 + 93fb974 commit 0be04b7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const LagreAktivitetKnapp = (props: Props) => {

return (
<>
<Button className="mt-4" loading={loading} disabled={disabled || !underOppfolging}>
<Button className="mt-4" loading={loading} disabled={disabled || !underOppfolging || loading}>
Lagre
</Button>
</>
Expand Down

0 comments on commit 0be04b7

Please sign in to comment.