We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac247e commit 93eab51Copy full SHA for 93eab51
1 file changed
frontend/src/components/HomeComponents/Tasks/AddTaskDialog.tsx
@@ -145,16 +145,19 @@ export const AddTaskdialog = ({
145
}
146
/>
147
</SelectTrigger>
148
- <SelectContent>
+ <SelectContent
149
+ onWheel={(e) => e.stopPropagation()}
150
+ className="max-h-60 overflow-y-auto"
151
+ >
152
+ <SelectItem value="__CREATE_NEW__">
153
+ + Create new project…
154
+ </SelectItem>
155
<SelectItem value="__NONE__">No project</SelectItem>
156
{uniqueProjects.map((project: string) => (
157
<SelectItem key={project} value={project}>
158
{project}
159
</SelectItem>
160
))}
- <SelectItem value="__CREATE_NEW__">
- + Create new project…
- </SelectItem>
161
</SelectContent>
162
</Select>
163
0 commit comments