Skip to content

Commit

Permalink
Tune up the look of the checkboxes in the forms for is_sharded
Browse files Browse the repository at this point in the history
  • Loading branch information
fuziontech committed Jan 31, 2024
1 parent 69f829e commit dfe80f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/Backups/Backups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default function Backups() {
valuePropName="checked"
rules={[{ required: true, message: 'Is this table sharded?' }]}
>
<Checkbox defaultChecked={false}>is sharded</Checkbox>
<Checkbox defaultChecked={false} />
</Form.Item>

<Form.Item<FieldType>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Backups/ScheduledBackups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export default function ScheduledBackups() {
valuePropName="checked"
rules={[{ required: true, message: 'Is this table sharded?' }]}
>
<Checkbox defaultChecked={false}>is sharded</Checkbox>
<Checkbox defaultChecked={false} />
</Form.Item>

<Form.Item<FieldType>
Expand Down

0 comments on commit dfe80f8

Please sign in to comment.