Skip to content

Commit 3c3aded

Browse files
committed
hmm make alert sticky at top
1 parent 71601ca commit 3c3aded

File tree

1 file changed

+14
-12
lines changed
  • static/app/views/replays/detail/playlist

1 file changed

+14
-12
lines changed

static/app/views/replays/detail/playlist/index.tsx

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff 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) => {

0 commit comments

Comments
 (0)