Skip to content

Commit aeac52c

Browse files
authored
Merge pull request #203 from navikt/fix-klage-status-enum
Fix KlageStatus enum values
2 parents 68cd31c + 4b14965 commit aeac52c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/types/klage.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { ISODate, ISODateTime, isoDateToPretty, prettyDateToISO } from '../utils
44
import { TemaKey } from './tema';
55

66
export enum KlageStatus {
7-
DRAFT,
8-
DONE,
9-
DELETED
7+
DRAFT = 'DRAFT',
8+
DONE = 'DONE',
9+
DELETED = 'DELETED'
1010
}
1111

1212
export interface NewKlage {

0 commit comments

Comments
 (0)