chore: pr feedback
This commit is contained in:
parent
1ca15f331f
commit
00d577b88e
2 changed files with 4 additions and 4 deletions
|
|
@ -153,7 +153,7 @@ export const RepositoryInfoTabContent = ({ repository }: Props) => {
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3 className="text-lg font-semibold mb-4">Current Configuration</h3>
|
<h3 className="text-lg font-semibold mb-4">Current Configuration</h3>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 @xl:grid-cols-2 gap-4">
|
||||||
<div>
|
<div>
|
||||||
<div className="text-sm font-medium text-muted-foreground">Name</div>
|
<div className="text-sm font-medium text-muted-foreground">Name</div>
|
||||||
<p className="mt-1 text-sm">{repository.name}</p>
|
<p className="mt-1 text-sm">{repository.name}</p>
|
||||||
|
|
@ -167,7 +167,7 @@ export const RepositoryInfoTabContent = ({ repository }: Props) => {
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<h3 className="text-lg font-semibold mb-4">Repository Information</h3>
|
<h3 className="text-lg font-semibold mb-4">Repository Information</h3>
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-4">
|
<div className="grid grid-cols-1 @xl:grid-cols-2 gap-4">
|
||||||
<div>
|
<div>
|
||||||
<div className="text-sm font-medium text-muted-foreground">Backend</div>
|
<div className="text-sm font-medium text-muted-foreground">Backend</div>
|
||||||
<p className="mt-1 text-sm">{repository.type}</p>
|
<p className="mt-1 text-sm">{repository.type}</p>
|
||||||
|
|
|
||||||
|
|
@ -199,7 +199,7 @@ export const VolumeInfoTabContent = ({ volume, statfs }: Props) => {
|
||||||
All backup schedules associated with this volume will also be removed.
|
All backup schedules associated with this volume will also be removed.
|
||||||
</AlertDialogDescription>
|
</AlertDialogDescription>
|
||||||
</AlertDialogHeader>
|
</AlertDialogHeader>
|
||||||
<div className="flex gap-3 justify-end">
|
<AlertDialogFooter>
|
||||||
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
<AlertDialogCancel>Cancel</AlertDialogCancel>
|
||||||
<AlertDialogAction
|
<AlertDialogAction
|
||||||
onClick={handleConfirmDelete}
|
onClick={handleConfirmDelete}
|
||||||
|
|
@ -209,7 +209,7 @@ export const VolumeInfoTabContent = ({ volume, statfs }: Props) => {
|
||||||
<Trash2 className="h-4 w-4 mr-2" />
|
<Trash2 className="h-4 w-4 mr-2" />
|
||||||
Delete volume
|
Delete volume
|
||||||
</AlertDialogAction>
|
</AlertDialogAction>
|
||||||
</div>
|
</AlertDialogFooter>
|
||||||
</AlertDialogContent>
|
</AlertDialogContent>
|
||||||
</AlertDialog>
|
</AlertDialog>
|
||||||
</>
|
</>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue