This commit is contained in:
Saeed Vaziry
2025-05-19 22:40:42 +02:00
parent 61faaabb85
commit f7ac3c32f0
2 changed files with 4 additions and 4 deletions

View File

@ -70,7 +70,7 @@ export default function AddSshKey({ children }: { children: ReactNode }) {
</DialogClose>
<Button type="button" onClick={submit} disabled={form.processing}>
{form.processing && <LoaderCircle className="animate-spin" />}
Connect
Add
</Button>
</DialogFooter>
</DialogContent>

View File

@ -45,8 +45,8 @@ export default function CreateTag({ children }: { children: ReactNode }) {
<DialogTrigger asChild>{children}</DialogTrigger>
<DialogContent className="max-h-screen overflow-y-auto sm:max-w-lg">
<DialogHeader>
<DialogTitle>Connect to storage provider</DialogTitle>
<DialogDescription className="sr-only">Connect to a new storage provider</DialogDescription>
<DialogTitle>Create a tag</DialogTitle>
<DialogDescription className="sr-only">Create a new tag</DialogDescription>
</DialogHeader>
<Form id="create-tag-form" onSubmit={submit} className="p-4">
<FormFields>
@ -70,7 +70,7 @@ export default function CreateTag({ children }: { children: ReactNode }) {
</DialogClose>
<Button type="button" onClick={submit} disabled={form.processing}>
{form.processing && <LoaderCircle className="animate-spin" />}
Connect
Create
</Button>
</DialogFooter>
</DialogContent>