Merge pull request #2049 from Dokploy/1977-volumes-cant-be-edited

fix: update FormItem styles for better layout in UpdateVolume component
This commit is contained in:
Mauricio Siu 2025-06-20 08:41:15 +02:00 committed by GitHub
commit be91b53c86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -247,7 +247,7 @@ export const UpdateVolume = ({
control={form.control}
name="content"
render={({ field }) => (
<FormItem>
<FormItem className="max-w-full max-w-[45rem]">
<FormLabel>Content</FormLabel>
<FormControl>
<FormControl>
@ -256,7 +256,7 @@ export const UpdateVolume = ({
placeholder={`NODE_ENV=production
PORT=3000
`}
className="h-96 font-mono"
className="h-96 font-mono w-full"
{...field}
/>
</FormControl>