himanish-star commented on code in PR #15331: URL: https://github.com/apache/pinot/pull/15331#discussion_r2011416497
########## pinot-controller/src/main/resources/app/components/Homepage/Operations/RebalanceServer/RebalanceServerResponses/RebalanceServerRebalanceSummaryResponse.tsx: ########## @@ -0,0 +1,35 @@ +import {Grid} from "@material-ui/core"; +import {RebalanceServerSection} from "../RebalanceServerSection"; +import React from "react"; +import './CustomCodeMirror.css'; +import {RebalanceServerResponseCard} from "./RebalanceServerResponseCard"; +import {RebalanceServerSectionResponse} from "./RebalanceServerSectionResponse"; + +export const RebalanceServerRebalanceSummaryResponse = ({ response }) => { + const responseSectionsToShow = [ + { + name: 'I. Server Information', + key: 'serverInfo' + }, + { + name: 'II. Segment Information', + key: 'segmentInfo' + } + ]; + Review Comment: @somandal for adding new sections inside Rebalance Summary Section you just need to provide the `key` and `name of the section` and it will render -- 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