From a2432cdfad05dfb4e860644e2236ec3618075902 Mon Sep 17 00:00:00 2001 From: Sergio Neves Barros Date: Sat, 9 Dec 2023 15:31:14 +0000 Subject: [PATCH] fixing checkbox error --- src/components/pages/dashboard/BuildsTable.js | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/components/pages/dashboard/BuildsTable.js b/src/components/pages/dashboard/BuildsTable.js index 5cbfcdd..59b6920 100644 --- a/src/components/pages/dashboard/BuildsTable.js +++ b/src/components/pages/dashboard/BuildsTable.js @@ -11,7 +11,6 @@ import { Table, Popover, Whisper, - CheckboxGroup, } from 'rsuite'; import { getDuration } from '../../../utility/TimeUtilities'; import ExecutionsResultsBar from '../../common/results-bar'; @@ -72,15 +71,13 @@ const CheckCell = function (props) { return ( // eslint-disable-next-line react/jsx-props-no-spreading - - toggleSelectedBuild(build)} - checked={isRowSelected(build)} - inline={false} - /> - + toggleSelectedBuild(build)} + checked={isRowSelected(build)} + inline={false} + /> ); };