Skip to content

Commit

Permalink
Adjust texts on search page to all finished cases
Browse files Browse the repository at this point in the history
  • Loading branch information
cskrov committed Oct 16, 2024
1 parent 0093c0b commit af9a881
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ const COLUMNS: ColumnKeyEnum[] = [

export const FullfoerteOppgaverTable = ({ oppgaveIds, onRefresh, isLoading }: Props) => {
if (oppgaveIds.length === 0) {
return <Alert variant="info">Ingen fullførte oppgaver siste 12 måneder</Alert>;
return <Alert variant="info">Ingen fullførte oppgaver</Alert>;
}

return (
<section>
<Heading size="small">Fullførte oppgaver siste 12 måneder</Heading>
<Heading size="small">Fullførte oppgaver</Heading>
<OppgaveTable
columns={COLUMNS}
isLoading={isLoading}
Expand Down

0 comments on commit af9a881

Please sign in to comment.