Skip to content

Commit

Permalink
lowercase Replica Auto Balance options in create volume modal
Browse files Browse the repository at this point in the history
Signed-off-by: andy.lee <andy.lee@suse.com>
  • Loading branch information
a110605 committed Sep 9, 2024
1 parent ed85b7b commit 879ae77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/routes/volume/CreateVolume.js
Original file line number Diff line number Diff line change
Expand Up @@ -477,10 +477,10 @@ const modal = ({
{getFieldDecorator('replicaAutoBalance', {
initialValue: 'ignored',
})(<Select>
<Option key={'ignored'} value={'ignored'}>Ignored (Follow the global setting)</Option>
<Option key={'disabled'} value={'disabled'}>Disabled</Option>
<Option key={'least-effort'} value={'least-effort'}>Least-Effort</Option>
<Option key={'best-effort'} value={'best-effort'}>Best-Effort</Option>
<Option key={'ignored'} value={'ignored'}>ignored (follow the global setting)</Option>
<Option key={'disabled'} value={'disabled'}>disabled</Option>
<Option key={'least-effort'} value={'least-effort'}>least-effort</Option>
<Option key={'best-effort'} value={'best-effort'}>best-effort</Option>
</Select>)}
</FormItem>
<FormItem label="Allow Snapshot Removal During Trim" hasFeedback {...formItemLayoutForAdvanced}>
Expand Down

0 comments on commit 879ae77

Please sign in to comment.