add description text to share link path input

This commit is contained in:
miloschwartz
2026-06-08 15:33:12 -07:00
parent d294bf8534
commit 859c0c9477
2 changed files with 12 additions and 5 deletions

View File

@@ -4,6 +4,7 @@ import { Button } from "@app/components/ui/button";
import {
Form,
FormControl,
FormDescription,
FormField,
FormItem,
FormLabel,
@@ -269,11 +270,11 @@ export default function CreateShareLinkForm({
</PopoverTrigger>
<PopoverContent className="p-0">
<ResourceSelector
excludeWildcard
orgId={
org.org
.orgId
}
excludeWildcard
orgId={
org.org
.orgId
}
selectedResource={
selectedResource
}
@@ -333,6 +334,11 @@ export default function CreateShareLinkForm({
<FormControl>
<Input {...field} />
</FormControl>
<FormDescription>
{t(
"sharePathDescription"
)}
</FormDescription>
<FormMessage />
</FormItem>
)}