16073: Correctly handle processes with no outputs to avoid infinite loading indicatior
[arvados-workbench2.git] / src / views / process-panel / process-io-card.tsx
index 94544918fc43f99410ea85b85bb518bc951dc47f..828461281a4aea48206ca7d7a9c6e4f8c0d3c4cc 100644 (file)
@@ -287,7 +287,7 @@ export const ProcessIOCard = withStyles(styles)(connect(null, mapDispatchToProps
                                         <ProcessIORaw data={raw} />
                                     </div>}
                             </>}
-                        {raw && Object.keys(raw).length === 0 && <Grid container item alignItems='center' justify='center'>
+                        {!loading && raw && Object.keys(raw).length === 0 && <Grid container item alignItems='center' justify='center'>
                             <DefaultView messages={["No parameters found"]} />
                         </Grid>}
                     </>) :