We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d70ea0 commit 79f9930Copy full SHA for 79f9930
static/app/views/replays/detail/playlist/index.tsx
@@ -46,13 +46,11 @@ export default function Playlist() {
46
<Flex height="100%" overflow="auto">
47
<Grid gap="md" rows={rows} height="100%" width="100%">
48
{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>
+ <Alert variant="info" showIcon>
+ <Flex wrap="wrap" align="center">
+ <Text>{t('This playlist is filtered by')} </Text>
+ <ProvidedFormattedQuery query={query} />
+ </Flex>
56
</Alert>
57
) : null}
58
<ReplayTable
0 commit comments