runitao commented on a change in pull request #1136:
URL: https://github.com/apache/hadoop-ozone/pull/1136#discussion_r449952640
##########
File path:
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/datanodes/datanodes.tsx
##########
@@ -201,14 +254,23 @@ export class Datanodes extends
React.Component<Record<string, object>, IDatanode
storageRemaining: datanode.storageReport.remaining,
pipelines: datanode.pipelines,
containers: datanode.containers,
- leaderCount: datanode.leaderCount
+ leaderCount: datanode.leaderCount,
+ version: datanode.version,
+ setupTime: datanode.setupTime
};
});
+ const selectedColumns: IOption[] = COLUMNS.filter(column =>
column.isVisible).map(column => ({
+ label: column.key,
+ value: column.key
+ }))
+
this.setState({
loading: false,
dataSource,
totalCount,
- lastUpdated: Number(moment())
+ lastUpdated: Number(moment()),
Review comment:
fixed
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]