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

View File

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