Skip to content

Commit

Permalink
Fixed datanode extra formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
devabhishekpal committed Jan 10, 2025
1 parent fe2ae3b commit 5a0cdbc
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const Datanodes: React.FC<{}> = () => {
searchColumn={searchColumn}
searchTerm={debouncedSearch}
handleSelectionChange={handleSelectionChange}
decommissionUuids={decommissionUuids} />
decommissionUuids={decommissionUuids}/>
</div>
</div>
<Modal
Expand All @@ -294,17 +294,17 @@ const Datanodes: React.FC<{}> = () => {
onCancel={handleModalCancel}
closable={false}
width={400} >
<div style={{
margin: '0px 0px 5px 0px',
fontSize: '16px',
fontWeight: 'bold'
}}
data-testid='dn-remove-modal'>
<WarningFilled className='icon-warning' style={{paddingRight: '8px'}}/>
Stop Tracking Datanode
<div style={{
margin: '0px 0px 5px 0px',
fontSize: '16px',
fontWeight: 'bold'
}}
data-testid='dn-remove-modal'>
<WarningFilled className='icon-warning' style={{paddingRight: '8px'}}/>
Stop Tracking Datanode
</div>
Are you sure, you want recon to stop tracking the selected <strong>{selectedRows.length}</strong> datanode(s)?
</Modal>
</Modal>
</>
);
}
Expand Down

0 comments on commit 5a0cdbc

Please sign in to comment.