jayeshchoudhary commented on code in PR #15623: URL: https://github.com/apache/pinot/pull/15623#discussion_r2059741213
########## pinot-controller/src/main/resources/app/pages/TenantDetails.tsx: ########## @@ -743,6 +772,111 @@ const TenantPageDetails = ({ match }: RouteComponentProps<Props>) => { tableName={tableName} /> )} + {/* Consuming Segments Info Dialog */} + {showConsumingSegmentsModal && ( + <CustomDialog + open={showConsumingSegmentsModal} + handleClose={() => setShowConsumingSegmentsModal(false)} + title="Consuming Segments Info" + size="lg" + showOkBtn={false} + btnCancelText="Close" + disableBackdropClick + > + {loadingConsumingSegments ? ( + <Typography>Loading consuming segments info...</Typography> + ) : consumingSegmentsInfo ? ( + <Box style={{ maxHeight: '70vh', overflowY: 'auto' }}> Review Comment: don't use absolute height. can we try height: 100% ? -- 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