Skip to content

Commit

Permalink
feat(#728): add none warning level
Browse files Browse the repository at this point in the history
  • Loading branch information
tamslo committed Aug 5, 2024
1 parent 3126ce7 commit ac1f39e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion anni/src/common/definitions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const brickCategories = [
] as const;
export type BrickCategory = (typeof brickCategories)[number];

export const warningLevelValues = ['green', 'yellow', 'red'] as const;
export const warningLevelValues = ['green', 'yellow', 'red', 'none'] as const;
export type WarningLevel = (typeof warningLevelValues)[number];

export type DrugAnnotationKey = keyof IDrug_Any['annotations'];
Expand Down

0 comments on commit ac1f39e

Please sign in to comment.