From 915a698c3c51e1222804540f29b89d098b2bb2f7 Mon Sep 17 00:00:00 2001 From: siddheshraze <81591724+siddheshraze@users.noreply.github.com> Date: Wed, 29 Jan 2025 15:48:36 -0500 Subject: [PATCH] minor correction in export modal -- msv --- .../datagrids/measurementscommons.tsx | 27 ++++++++++++++----- 1 file changed, 20 insertions(+), 7 deletions(-) diff --git a/frontend/components/datagrids/measurementscommons.tsx b/frontend/components/datagrids/measurementscommons.tsx index 3951677a..5bb4e924 100644 --- a/frontend/components/datagrids/measurementscommons.tsx +++ b/frontend/components/datagrids/measurementscommons.tsx @@ -391,7 +391,9 @@ const EditToolbar = (props: EditToolbarProps) => { > : undefined} sx={{ flex: 1, textAlign: 'center', @@ -400,11 +402,13 @@ const EditToolbar = (props: EditToolbarProps) => { }} onClick={() => handleChipToggle('valid')} > - Rows that have passed validation + Rows passing validation : undefined} sx={{ flex: 1, textAlign: 'center', @@ -413,11 +417,13 @@ const EditToolbar = (props: EditToolbarProps) => { }} onClick={() => handleChipToggle('errors')} > - Rows that have failed validation + Rows failing validation : undefined} sx={{ flex: 1, textAlign: 'center', @@ -426,12 +432,19 @@ const EditToolbar = (props: EditToolbarProps) => { }} onClick={() => handleChipToggle('pending')} > - Rows that have not yet been validated + Rows pending validation - +