Fixed Object Version selector visibility in Add Lifecycle Rule modal (#2769)

- Fixed Object Version selector visibility in Add Lifecycle Rule modal
- Changed definition in swagger file to match camelCase standard
- Added a playwright test case to avoid this issue in the future

Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
Alex
2023-04-11 03:01:03 -06:00
committed by GitHub
parent 29507cda7e
commit 75b3a6bea4
14 changed files with 111 additions and 64 deletions

View File

@@ -5948,24 +5948,24 @@ func init() {
"bucketVersioningResponse": {
"type": "object",
"properties": {
"ExcludeFolders": {
"MFADelete": {
"type": "string"
},
"excludeFolders": {
"type": "boolean"
},
"ExcludedPrefixes": {
"excludedPrefixes": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Prefix": {
"prefix": {
"type": "string"
}
}
}
},
"MFADelete": {
"type": "string"
},
"Status": {
"status": {
"type": "string"
}
}
@@ -14384,7 +14384,7 @@ func init() {
"BucketVersioningResponseExcludedPrefixesItems0": {
"type": "object",
"properties": {
"Prefix": {
"prefix": {
"type": "string"
}
}
@@ -15084,19 +15084,19 @@ func init() {
"bucketVersioningResponse": {
"type": "object",
"properties": {
"ExcludeFolders": {
"MFADelete": {
"type": "string"
},
"excludeFolders": {
"type": "boolean"
},
"ExcludedPrefixes": {
"excludedPrefixes": {
"type": "array",
"items": {
"$ref": "#/definitions/BucketVersioningResponseExcludedPrefixesItems0"
}
},
"MFADelete": {
"type": "string"
},
"Status": {
"status": {
"type": "string"
}
}