jayeshchoudhary commented on code in PR #15657: URL: https://github.com/apache/pinot/pull/15657#discussion_r2065923886
########## pinot-controller/src/main/resources/app/pages/TenantDetails.tsx: ########## @@ -635,10 +774,43 @@ const TenantPageDetails = ({ match }: RouteComponentProps<Props>) => { <div className={classes.highlightBackground}> <TableToolbar name="Summary" showSearchBox={false} /> <Grid container spacing={2} alignItems="center" className={classes.body}> - <Grid item xs={4}> + <Grid item xs={3}> <strong>Table Name:</strong> {tableSummary.tableName} </Grid> - <Grid item container xs={4} wrap="nowrap" spacing={1}> + <Grid item xs={3}> + <Box display="flex" alignItems="center"> + <strong>Consuming status:</strong> + {loadingPauseStatus ? ( + <CircularProgress size={16} style={{ marginLeft: 8 }} /> + ) : pauseStatusData ? ( + <Chip + label={ + isPauseActionInProgress Review Comment: consuming status is only fetched for realtime tables? if yes then this status should only be shown for realtime tables -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org