From 4e94bca76a6581eafb4a0b37233bc187badd05c3 Mon Sep 17 00:00:00 2001 From: burnettk Date: Tue, 21 Feb 2023 22:30:17 -0500 Subject: [PATCH] make it so the message at the top of form is never strictly wrong --- .../src/themes/carbon/ErrorList/ErrorList.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/spiffworkflow-frontend/src/themes/carbon/ErrorList/ErrorList.tsx b/spiffworkflow-frontend/src/themes/carbon/ErrorList/ErrorList.tsx index 58c28c11..426a426b 100644 --- a/spiffworkflow-frontend/src/themes/carbon/ErrorList/ErrorList.tsx +++ b/spiffworkflow-frontend/src/themes/carbon/ErrorList/ErrorList.tsx @@ -5,8 +5,8 @@ import { Tag } from '@carbon/react'; function ErrorList({ errors }: ErrorListProps) { if (errors) { return ( - - Please fill out required fields + + Some fields are invalid. Please correct them before submitting the form. ); }