Skip to content

Commit bdf7bd6

Browse files
authored
Changed Bucket Access Policy default value from n/a to private (#3267)
Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
1 parent 4ce1ba9 commit bdf7bd6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web-app/src/screens/Console/Buckets/BucketDetails/BucketSummaryPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ const BucketSummary = () => {
124124

125125
const bucketName = params.bucketName || "";
126126

127-
let accessPolicy = "n/a";
127+
let accessPolicy = "PRIVATE";
128128
let policyDefinition = "";
129129

130130
if (bucketInfo !== null && bucketInfo.access && bucketInfo.definition) {

web-app/src/screens/Console/Buckets/BucketDetails/SummaryItems/EditablePropertyItem.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const EditablePropertyItem = ({
8989
isLoading={isLoading}
9090
onClick={onEdit}
9191
label={value}
92-
sx={{ fontWeight: "bold" }}
92+
sx={{ fontWeight: "bold", textTransform: "capitalize" }}
9393
disabled={disabled}
9494
/>
9595
</HelpTip>
@@ -104,7 +104,7 @@ const EditablePropertyItem = ({
104104
isLoading={isLoading}
105105
onClick={onEdit}
106106
label={value}
107-
sx={{ fontWeight: "bold" }}
107+
sx={{ fontWeight: "bold", textTransform: "capitalize" }}
108108
disabled={disabled}
109109
/>
110110
</SecureAction>

0 commit comments

Comments
 (0)