Skip to content

Commit

Permalink
fix(ui-mode): make UI Mode projects scrollable (#28438)
Browse files Browse the repository at this point in the history
  • Loading branch information
mxschmitt authored Nov 30, 2023
1 parent f214550 commit 8efa8db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/trace-viewer/src/ui/uiModeView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ const FiltersView: React.FC<{
<span className='filter-label'>Status:</span> {statusLine}
<span className='filter-label'>Projects:</span> {projectsLine}
</div>
{expanded && <div className='hbox' style={{ marginLeft: 14 }}>
{expanded && <div className='hbox' style={{ marginLeft: 14, maxHeight: 200, overflowY: 'auto' }}>
<div className='filter-list'>
{[...statusFilters.entries()].map(([status, value]) => {
return <div className='filter-entry'>
Expand Down

0 comments on commit 8efa8db

Please sign in to comment.