Skip to content

Commit 60d1bc4

Browse files
authored
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…
2 parents 68be333 + daa8184 commit 60d1bc4

File tree

1 file changed

+2
-2
lines changed
  • apps/dokploy/components/dashboard/application/advanced/volumes

1 file changed

+2
-2
lines changed

apps/dokploy/components/dashboard/application/advanced/volumes/add-volumes.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ export const AddVolumes = ({
318318
control={form.control}
319319
name="content"
320320
render={({ field }) => (
321-
<FormItem>
321+
<FormItem className="max-w-full max-w-[45rem]">
322322
<FormLabel>Content</FormLabel>
323323
<FormControl>
324324
<FormControl>
@@ -327,7 +327,7 @@ export const AddVolumes = ({
327327
placeholder={`NODE_ENV=production
328328
PORT=3000
329329
`}
330-
className="h-96 font-mono"
330+
className="h-96 font-mono "
331331
{...field}
332332
/>
333333
</FormControl>

0 commit comments

Comments
 (0)