File tree Expand file tree Collapse file tree 1 file changed +14
-12
lines changed
static/app/views/replays/detail/playlist Expand file tree Collapse file tree 1 file changed +14
-12
lines changed Original file line number Diff line number Diff line change @@ -58,18 +58,20 @@ export default function Playlist() {
5858 < Text > { t ( 'This playlist is filtered by:' ) } </ Text >
5959 </ Alert >
6060 ) : null }
61- < Flex direction = "column" gap = "md" >
62- < ReplayTable
63- columns = { columns }
64- error = { null }
65- highlightedRowIndex = { currentReplayIndex }
66- // we prefer isLoading since isPending is true even if not enabled
67- isPending = { isLoading }
68- query = { location . query }
69- replays = { replays }
70- showDropdownFilters = { false }
71- stickyHeader
72- />
61+ < Flex direction = "column" gap = "md" height = "100%" >
62+ < Flex height = "100%" overflow = "auto" >
63+ < ReplayTable
64+ columns = { columns }
65+ error = { null }
66+ highlightedRowIndex = { currentReplayIndex }
67+ // we prefer isLoading since isPending is true even if not enabled
68+ isPending = { isLoading }
69+ query = { location . query }
70+ replays = { replays }
71+ showDropdownFilters = { false }
72+ stickyHeader
73+ />
74+ </ Flex >
7375 < Pagination
7476 pageLinks = { pageLinks }
7577 onCursor = { ( cursor , path , searchQuery ) => {
You can’t perform that action at this time.
0 commit comments