Merge branch '21449-lsf-maxruntime'
[arvados.git] / services / workbench2 / src / views-components / data-explorer / renderers.tsx
index 101e6edad0597e613c4e44bc7623bd941ae48e03..91b06c2b2f0a9e22d0d407422d4c2b0fc4636729 100644 (file)
@@ -903,7 +903,6 @@ const _resourceWithName = withStyles(
             <Typography
                 style={{ color: theme.palette.primary.main }}
                 inline
-                noWrap
             >
                 {uuid}
             </Typography>
@@ -914,7 +913,6 @@ const _resourceWithName = withStyles(
         <Typography
             style={{ color: theme.palette.primary.main }}
             inline
-            noWrap
         >
             {userFullname} ({uuid})
         </Typography>
@@ -1150,7 +1148,7 @@ export const GroupMembersCount = connect(
 )(withTheme()((props: {value: number | null | undefined, theme:ArvadosTheme}) => {
     if (props.value === undefined) {
         // Loading
-        return <Typography>
+        return <Typography component={"div"}>
             <InlinePulser />
         </Typography>;
     } else if (props.value === null) {