19482: Fix tests
[arvados-workbench2.git] / src / views / process-panel / process-io-card.tsx
index 7a2f80949af9d7a2dbdaf8c912a4725806d8e6df..baa51496f44b2293486ae81845eaf799aed7e14c 100644 (file)
@@ -255,7 +255,7 @@ export const ProcessIOCard = withStyles(styles)(connect(null, mapDispatchToProps
         const [showImagePreview, setShowImagePreview] = useState(false);
 
         const PanelIcon = label === ProcessIOCardType.INPUT ? InputIcon : OutputIcon;
-        const mainProcess = process && process!.containerRequest.requestingContainerUuid;
+        const mainProcess = !(process && process!.containerRequest.requestingContainerUuid);
 
         const loading = raw === null || raw === undefined || params === null;
         const hasRaw = !!(raw && Object.keys(raw).length > 0);