Skip to content

Commit 79f9930

Browse files
committed
change to use flex + wrap, no expansion
1 parent 4d70ea0 commit 79f9930

File tree

1 file changed

+5
-7
lines changed
  • static/app/views/replays/detail/playlist

1 file changed

+5
-7
lines changed

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

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,11 @@ export default function Playlist() {
4646
<Flex height="100%" overflow="auto">
4747
<Grid gap="md" rows={rows} height="100%" width="100%">
4848
{query ? (
49-
<Alert
50-
variant="info"
51-
showIcon
52-
defaultExpanded
53-
expand={<ProvidedFormattedQuery query={query} />}
54-
>
55-
<Text>{t('This playlist is filtered by:')} </Text>
49+
<Alert variant="info" showIcon>
50+
<Flex wrap="wrap" align="center">
51+
<Text>{t('This playlist is filtered by')} </Text>
52+
<ProvidedFormattedQuery query={query} />
53+
</Flex>
5654
</Alert>
5755
) : null}
5856
<ReplayTable

0 commit comments

Comments
 (0)