Merge pull request #2898 from Dokploy/2896-file-mount-box-width-expands-with-the-textbox

fix(volumes): update FormItem class for better layout and adjust inpu…
This commit is contained in:
Mauricio Siu
2025-10-25 11:26:22 -06:00
committed by GitHub

View File

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