devabhishekpal commented on code in PR #8862: URL: https://github.com/apache/ozone/pull/8862#discussion_r2238823446
########## hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/missingContainers/missingContainers.tsx: ########## @@ -214,11 +217,17 @@ interface IExpandedRowState { interface IMissingContainersState { loading: boolean; - missingDataSource: IContainerResponse[]; - underReplicatedDataSource: IContainerResponse[]; - overReplicatedDataSource: IContainerResponse[]; - misReplicatedDataSource: IContainerResponse[]; + containerDataSource: IContainerResponse[]; + missingCount: number; + underReplicatedCount: number; + overReplicatedCount: number; + misReplicatedCount: number; expandedRowData: IExpandedRow; + DEFAULT_LIMIT: number; Review Comment: DEFAULT_LIMIT is not required. AntD maintains the page size automatically. Instead this should be stored as a 'pageSize' to track the currently selected size of the data ```suggestion pageSize: number; ``` -- 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: issues-unsubscr...@ozone.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@ozone.apache.org For additional commands, e-mail: issues-h...@ozone.apache.org