Skip to content

Commit

Permalink
Update shell.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
nerderlyne authored Feb 16, 2024
1 parent 2f96439 commit a84c104
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ui/components/shell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,17 +82,17 @@ export const Shell = () => {
<Form {...form}>
<form
onSubmit={form.handleSubmit(onSubmit)}
className="mb-2 flex flex-row"
className="mb-2 w-screen flex flex-row"
>
<FormField
control={form.control}
name="command"
render={({ field }) => (
<FormItem className="flex flex-row items-center space-x-1 space-y-0">
<FormItem className="w-full flex flex-row items-center space-x-1 space-y-0">
{id}
<FormControl>
<input
className="min-w-[580px] bg-black text-white focus:outline-none w-full"
className="min-w-full bg-black text-white focus:outline-none w-full"
{...field}
/>
</FormControl>
Expand Down

0 comments on commit a84c104

Please sign in to comment.