File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed
apps/web/src/app/(private)/settings/_components/Webhooks
packages/web-ui/src/ds/molecules/MultiSelect Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -100,6 +100,7 @@ export default function EditWebhook() {
100
100
101
101
< div className = 'py-2' >
102
102
< MultiSelect
103
+ maxCount = { 2 }
103
104
description = 'You can filter webhook events by project to limit the scope of the notifications.'
104
105
info = 'Leave empty to apply to all projects'
105
106
label = 'Projects'
Original file line number Diff line number Diff line change @@ -75,6 +75,7 @@ export default function NewWebhook() {
75
75
76
76
< div className = 'py-2' >
77
77
< MultiSelect
78
+ maxCount = { 2 }
78
79
description = 'You can filter webhook events by project to limit the scope of the notifications.'
79
80
info = 'Leave empty to apply to all projects'
80
81
label = 'Projects'
Original file line number Diff line number Diff line change @@ -156,7 +156,7 @@ export const MultiSelect = React.forwardRef<
156
156
{ ...props }
157
157
onClick = { handleTogglePopover }
158
158
className = { cn (
159
- 'flex w-full p-0 h-8 py-2 px-2 rounded-md border items-center justify-between bg-inherit hover:bg-inherit [&_svg]:pointer-events-auto' ,
159
+ 'flex w-full p-0 h-8 py-2 px-2 rounded-md border items-center justify-between bg-inherit hover:bg-inherit [&_svg]:pointer-events-auto overflow-y-auto ' ,
160
160
className ,
161
161
) }
162
162
>
You can’t perform that action at this time.
0 commit comments