Skip to content

Commit

Permalink
[v14] Web: fix notification dropdown from being too long with max hei…
Browse files Browse the repository at this point in the history
…ght (#42338)
  • Loading branch information
kimlisa authored Jun 4, 2024
1 parent 2981c66 commit ac6880b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,12 @@ export function Notifications() {

<Dropdown
open={open}
style={{ width: '300px' }}
style={{
width: '300px',
maxHeight: '80vh',
overflowY: 'auto',
overflowX: 'hidden',
}}
data-testid="tb-note-dropdown"
>
{items.length ? (
Expand Down

0 comments on commit ac6880b

Please sign in to comment.