Skip to content

Commit 99d62b0

Browse files
committed
rebase and address conflicts
1 parent eba5c51 commit 99d62b0

File tree

1 file changed

+28
-6
lines changed

1 file changed

+28
-6
lines changed

portal-ui/src/screens/Console/Configurations/SiteReplication/AddReplicationSites.tsx

Lines changed: 28 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -333,7 +333,7 @@ const AddReplicationSites = () => {
333333
});
334334
}}
335335
canAdd={true}
336-
canRemove={index > 0}
336+
canRemove={index > 0 && !ps.isSaved}
337337
onAddClick={() => {
338338
const newRows = [...existingSites];
339339
//add at the next index
@@ -484,11 +484,12 @@ const AddReplicationSites = () => {
484484
borderRadius: "50%",
485485
},
486486

487-
"& .step-row": {
487+
"& li": {
488488
fontSize: "14px",
489489
display: "flex",
490490
marginTop: "15px",
491491
marginBottom: "15px",
492+
width:"100%",
492493

493494
"&.step-text": {
494495
fontWeight: 400,
@@ -508,8 +509,8 @@ const AddReplicationSites = () => {
508509
<Box>
509510
The following changes are replicated to all other sites
510511
</Box>
511-
<ul>
512-
<li>Creation and deletion of buckets and objects</li>
512+
<ul >
513+
<li >Creation and deletion of buckets and objects</li>
513514
<li>
514515
Creation and deletion of all IAM users, groups, policies
515516
and their mappings to users or groups
@@ -520,21 +521,42 @@ const AddReplicationSites = () => {
520521
owned by the root user)
521522
</li>
522523
<li>
523-
Changes to Bucket features such as
524+
<Box style={{
525+
display:"flex",
526+
flexFlow:"column",
527+
528+
justifyContent:"flex-start",
529+
}}>
530+
<div style={{
531+
paddingTop:"1px",
532+
}}>Changes to Bucket features such as</div>
524533
<ul>
534+
525535
<li>Bucket Policies</li>
526536
<li>Bucket Tags</li>
527537
<li>Bucket Object-Lock configurations</li>
528538
<li>Bucket Encryption configuration</li>
529539
</ul>
540+
</Box>
530541
</li>
531542

532543
<li>
533-
The following Bucket features will NOT be replicated
544+
<Box style={{
545+
display:"flex",
546+
flexFlow:"column",
547+
548+
justifyContent:"flex-start",
549+
}}>
550+
<div style={{
551+
paddingTop:"1px",
552+
}}>The following Bucket features will NOT be replicated</div>
553+
554+
534555
<ul>
535556
<li>Bucket notification configuration</li>
536557
<li>Bucket lifecycle (ILM) configuration</li>
537558
</ul>
559+
</Box>
538560
</li>
539561
</ul>
540562
</Box>

0 commit comments

Comments
 (0)