From ac1f39e9cba7843456b7a4bea5e4730ad6bd66ef Mon Sep 17 00:00:00 2001 From: Tamara Slosarek Date: Mon, 5 Aug 2024 18:47:48 +0200 Subject: [PATCH] feat(#728): add none warning level --- anni/src/common/definitions.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anni/src/common/definitions.tsx b/anni/src/common/definitions.tsx index fb2dce7a7..47d937b3b 100644 --- a/anni/src/common/definitions.tsx +++ b/anni/src/common/definitions.tsx @@ -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'];