From 288f60bff2e1a492a4a37568e8fcbd1a1a470a64 Mon Sep 17 00:00:00 2001 From: Mark Stacey Date: Fri, 22 Jan 2021 12:05:01 -0330 Subject: [PATCH] Fix design system error constants (#10246) The design system error constants were missing a hyphen. Now they match the CSS color variable they were intended to match. --- ui/app/helpers/constants/design-system.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/app/helpers/constants/design-system.js b/ui/app/helpers/constants/design-system.js index 0d1a42eea..288a1f0be 100644 --- a/ui/app/helpers/constants/design-system.js +++ b/ui/app/helpers/constants/design-system.js @@ -14,9 +14,9 @@ export const COLORS = { SUCCESS1: 'success-1', SUCCESS2: 'success-2', SUCCESS3: 'success-3', - ERROR1: 'error1', - ERROR2: 'error2', - ERROR3: 'error3', + ERROR1: 'error-1', + ERROR2: 'error-2', + ERROR3: 'error-3', ALERT1: 'alert-1', ALERT2: 'alert-2', ALERT3: 'alert-3',