Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions web/src/components/backups/S3SourcesManagement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
} from '@/components/ui/alert-dialog'
import { Badge } from '@/components/ui/badge'
import { Button } from '@/components/ui/button'
import { CreateActionButton } from '@/components/ui/create-action-button'
import {
Dialog,
DialogContent,
Expand Down Expand Up @@ -344,12 +345,11 @@ export function S3SourcesManagement() {
Configure S3 storage for backups
</p>
</div>
<Button asChild className="w-full sm:w-auto">
<Link to="/backups/s3-sources/new">
<Plus className="mr-2 h-4 w-4" />
Add S3 Source
</Link>
</Button>
<CreateActionButton
to="/backups/s3-sources/new"
label="Add S3 Source"
className="w-full sm:w-auto"
/>
</div>

<Dialog open={isEditDialogOpen} onOpenChange={setIsEditDialogOpen}>
Expand Down
Loading
Loading