Skip to content

Commit

Permalink
cluster runs
Browse files Browse the repository at this point in the history
  • Loading branch information
fuziontech committed Aug 24, 2023
1 parent 1b6a10a commit 6131b0a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/Backups/ScheduledBackups.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ export default function ScheduledBackups() {
initialValues={{ remember: true }}
autoComplete="on"
>
<Form.Item label="Cluster">
<Form.Item name="cluster" label="Cluster">
<Select>
{clusters.clusters.map(cluster => (
<Select.Option value="{cluster.cluster}">{cluster.cluster}</Select.Option>
<Select.Option value={cluster.cluster}>{cluster.cluster}</Select.Option>
))}
</Select>
</Form.Item>
Expand Down

0 comments on commit 6131b0a

Please sign in to comment.