Skip to content

Commit

Permalink
Merge pull request #203 from navikt/fix-klage-status-enum
Browse files Browse the repository at this point in the history
Fix KlageStatus enum values
  • Loading branch information
mahval authored Nov 4, 2020
2 parents 68cd31c + 4b14965 commit aeac52c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types/klage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ import { ISODate, ISODateTime, isoDateToPretty, prettyDateToISO } from '../utils
import { TemaKey } from './tema';

export enum KlageStatus {
DRAFT,
DONE,
DELETED
DRAFT = 'DRAFT',
DONE = 'DONE',
DELETED = 'DELETED'
}

export interface NewKlage {
Expand Down

0 comments on commit aeac52c

Please sign in to comment.