[arvados-workbench2] updated: 2.6.0-97-g6b9cb4f8
git repository hosting
git at public.arvados.org
Thu Sep 14 01:25:08 UTC 2023
Summary of changes:
src/components/data-table/data-table.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 6b9cb4f828257684edba0809461fa2f508d20f15 (commit)
from 6271a0f335b359cde84a04dbf4d4f07f63ca7fc6 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 6b9cb4f828257684edba0809461fa2f508d20f15
Author: Lisa Knox <lisaknox83 at gmail.com>
Date: Wed Sep 13 21:25:02 2023 -0400
15768: fixed checkbox undefined Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>
diff --git a/src/components/data-table/data-table.tsx b/src/components/data-table/data-table.tsx
index 96f03651..155d772f 100644
--- a/src/components/data-table/data-table.tsx
+++ b/src/components/data-table/data-table.tsx
@@ -169,7 +169,7 @@ export const DataTable = withStyles(styles)(
type="checkbox"
name={uuid}
className={classes.checkBox}
- checked={checkedList[uuid] ? checkedList[uuid] : false}
+ checked={checkedList && checkedList[uuid] ? checkedList[uuid] : false}
onChange={() => this.handleSelectOne(uuid)}
onDoubleClick={ev => ev.stopPropagation()}></input>
);
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list