Merge branch '14361-broken-inputs-preview-layout'
[arvados-workbench2.git] / src / components / details-attribute / details-attribute.tsx
index fe31b0b333f7c6e1c0974a253d9761ac2157a423..78b4341d173046972385cad95e584cb735138085 100644 (file)
@@ -35,14 +35,15 @@ const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
         width: '60%',
         color: theme.palette.primary.main,
         textDecoration: 'none',
-        overflowWrap: 'break-word'
+        overflowWrap: 'break-word',
+        cursor: 'pointer'
     }
 });
 
 interface DetailsAttributeDataProps {
     label: string;
     classLabel?: string;
-    value?: any;
+    value?: React.ReactNode;
     classValue?: string;
     lowercaseValue?: boolean;
     link?: string;