From c6314ca47008f1ffd0fe70fe025a57475b64e773 Mon Sep 17 00:00:00 2001 From: Eric Biagiotti Date: Tue, 19 Nov 2019 16:31:16 -0500 Subject: [PATCH] 15840: Fixes merge Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- src/views/collection-panel/collection-panel.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/views/collection-panel/collection-panel.tsx b/src/views/collection-panel/collection-panel.tsx index 5c4b28df..99edc1a2 100644 --- a/src/views/collection-panel/collection-panel.tsx +++ b/src/views/collection-panel/collection-panel.tsx @@ -65,8 +65,7 @@ type CollectionPanelProps = CollectionPanelDataProps & DispatchProp export const CollectionPanel = withStyles(styles)( connect((state: RootState, props: RouteComponentProps<{ id: string }>) => { const item = getResource(props.match.params.id)(state.resources); - const data = getResourceData(props.match.params.id)(state.resourcesData); - return { item, data }; + return { item }; })( class extends React.Component { -- 2.30.2