smitajoshi12 commented on code in PR #4135:
URL: https://github.com/apache/ozone/pull/4135#discussion_r1084817745
##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/views/pipelines/pipelines.tsx:
##########
@@ -111,7 +111,15 @@ const COLUMNS = [
dataIndex: 'datanodes',
key: 'datanodes',
isSearchable: true,
- render: (datanodes: string[]) => <div>{datanodes.map(datanode => <div
key={datanode}>{datanode}</div>)}</div>
+ render: (datanodes: string[]) => <div> {datanodes &&
datanodes.map(datanode =>
+ <div key={datanode.hostName}>
+ <div className='uuidtooltip'>
+ <Tooltip placement='top' title={`UUID : ${datanode &&
datanode.uuid}`} getPopupContainer={(triggerNode) => triggerNode}>
+ {datanode && datanode.hostName}
+ </Tooltip>
Review Comment:
@smengcl Changes suggested in Review are completed.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]