dombizita commented on code in PR #8407:
URL: https://github.com/apache/ozone/pull/8407#discussion_r2166391648
##########
hadoop-ozone/recon/src/main/resources/webapps/recon/ozone-recon-web/src/v2/components/tables/containersTable.tsx:
##########
@@ -37,6 +41,23 @@ import {
const size = filesize.partial({ standard: 'iec' });
+const getDatanodeWith = (idx: number, host: string) => {
+ return (
+ <div key={idx} className='datanode-container-v2-tr'>
+ <NodeIndexOutlined /> {host}
+ </div>
+ );
+}
+
+const getDataNodeWithChecksum = (idx: number, host: string, checksum: string)
=> {
+ return (
+ <div key={idx} className='datanode-container-v2-tr'>
+ <span className="datanode-container-v2-td"><NodeIndexOutlined />
{host}</span>
+ <span className="datanode-container-v2-td">/ ({checksum})</span>
Review Comment:
I think we can remove the brackets from the checksum
```suggestion
<span className="datanode-container-v2-td">/ {checksum}</span>
```
--
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]