From: Eric Biagiotti Date: Tue, 19 Nov 2019 21:31:16 +0000 (-0500) Subject: 15840: Fixes merge X-Git-Tag: 2.0.0~27^2~2 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/c6314ca47008f1ffd0fe70fe025a57475b64e773 15840: Fixes merge Arvados-DCO-1.1-Signed-off-by: Eric Biagiotti --- 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 {