From: Stephen Smith Date: Thu, 4 Nov 2021 00:39:23 +0000 (-0400) Subject: 18123: Fix directionality of link tail renderer. X-Git-Tag: 2.4.0~22^2~31 X-Git-Url: https://git.arvados.org/arvados-workbench2.git/commitdiff_plain/703a2e1813ed1ff80d2ccd3214233240802b4754 18123: Fix directionality of link tail renderer. Arvados-DCO-1.1-Signed-off-by: Stephen Smith --- diff --git a/src/views-components/data-explorer/renderers.tsx b/src/views-components/data-explorer/renderers.tsx index 77b5b694..71b82b6f 100644 --- a/src/views-components/data-explorer/renderers.tsx +++ b/src/views-components/data-explorer/renderers.tsx @@ -309,7 +309,7 @@ export const ResourceLinkTail = connect( const tailResource = getResource(resource?.tailUuid || '')(state.resources); return { - item: tailResource || { uuid: resource?.tailUuid || '', kind: resource?.headKind || ResourceKind.NONE } + item: tailResource || { uuid: resource?.tailUuid || '', kind: resource?.tailKind || ResourceKind.NONE } }; })((props: { item: Resource } & DispatchProp) => renderLink(props.dispatch, props.item));