From a47b4595c590c4f1ba3fe94e909a2aa34805eca8 Mon Sep 17 00:00:00 2001 From: Damian Stasik Date: Tue, 19 Oct 2021 15:49:06 +0200 Subject: [PATCH] fix: always pass boolean value when toggling checkbox --- src/dashboard/Data/Browser/BrowserTable.react.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dashboard/Data/Browser/BrowserTable.react.js b/src/dashboard/Data/Browser/BrowserTable.react.js index 732ae944e7..1052f752ac 100644 --- a/src/dashboard/Data/Browser/BrowserTable.react.js +++ b/src/dashboard/Data/Browser/BrowserTable.react.js @@ -433,8 +433,8 @@ export default class BrowserTable extends React.Component { {table} checked).length === this.props.data.length } selectAll={checked => this.props.data.forEach(({ id }) => this.props.selectRow(id, checked))}