17532: Move collection details history modified by to its own row
[arvados-workbench2.git] / src / views-components / data-explorer / renderers.tsx
index 4a56b142893f511d5f80e7846784a99efe3c0617..3965e69d9da746d309963b01abede0a418e0b7d9 100644 (file)
@@ -458,18 +458,16 @@ export const ResourceOwnerWithName =
         });
 
 export const UserNameFromID =
-    compose(
-        userFromID,
-        withStyles({}, { withTheme: true }))
-        ((props: { uuid: string, userFullname: string, dispatch: Dispatch }) => {
+    compose(userFromID)(
+        (props: { uuid: string, userFullname: string, dispatch: Dispatch }) => {
             const { uuid, userFullname, dispatch } = props;
 
             if (userFullname === '') {
                 dispatch<any>(loadResource(uuid, false));
             }
-            return <Typography inline>
+            return <span>
                 {userFullname ? userFullname : uuid}
-            </Typography>;
+            </span>;
         });
 
 export const ResponsiblePerson =