Skip to content

Commit

Permalink
Disable versioning checkbox after bucket creation
Browse files Browse the repository at this point in the history
  • Loading branch information
votdev committed Aug 16, 2023
1 parent 9b9ef81 commit 34ffee3
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.20.0]

### Changed

- Disable versioning checkbox after bucket creation (gh#aquarist-labs/s3gw#672).

## [0.19.0]

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,11 @@ export class BucketFormPageComponent implements OnInit, IsDirty {
type: 'checkbox',
name: 'VersioningEnabled',
label: TEXT('Enabled'),
hint: TEXT('Enable versioning for the objects in this bucket.'),
hint: TEXT(
'Enable versioning for the objects in this bucket. Can only be enabled while bucket creation.'
),
value: false,
readonly: editing,
modifiers: [
{
type: 'value',
Expand Down

0 comments on commit 34ffee3

Please sign in to comment.