From 53020025bcdb85ffe9b8fcca7402f658ca7d44d8 Mon Sep 17 00:00:00 2001 From: Lisa Knox Date: Wed, 9 Oct 2024 15:50:12 -0400 Subject: [PATCH] 22135: fixed linter warning Arvados-DCO-1.1-Signed-off-by: Lisa Knox --- services/workbench2/src/components/data-table/data-table.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/workbench2/src/components/data-table/data-table.tsx b/services/workbench2/src/components/data-table/data-table.tsx index aa01896622..57d14d0bac 100644 --- a/services/workbench2/src/components/data-table/data-table.tsx +++ b/services/workbench2/src/components/data-table/data-table.tsx @@ -185,7 +185,7 @@ export const DataTable = withStyles(styles)( componentDidMount(): void { this.initializeCheckedList([]); - if((this.props.items.length > 0) && !this.state.isLoaded || !this.props.working) { + if(((this.props.items.length > 0) && !this.state.isLoaded) || !this.props.working) { this.setState({ isLoaded: true }); } } -- 2.30.2