Skip to content

Commit a72c3c9

Browse files
committed
Update EmptyRenderer to new copy
1 parent 5be5214 commit a72c3c9

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

static/app/views/explore/logs/tables/logsInfiniteTable.tsx

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type {Virtualizer} from '@tanstack/react-virtual';
66
import {useVirtualizer, useWindowVirtualizer} from '@tanstack/react-virtual';
77

88
import {Button} from '@sentry/scraps/button';
9-
import {Flex, Stack} from '@sentry/scraps/layout';
9+
import {Container, Flex, Stack} from '@sentry/scraps/layout';
1010
import {ExternalLink} from '@sentry/scraps/link';
1111
import {Tooltip} from '@sentry/scraps/tooltip';
1212

@@ -666,22 +666,22 @@ function EmptyRenderer({
666666
<EmptyStateText size="xl">{t('No logs found yet')}</EmptyStateText>
667667
<EmptyStateText size="md">
668668
{tct(
669-
'We scanned [bytesScanned] already but did not find any matching logs yet.[break]You can narrow your time range or you can [continueScanning].',
670-
{
671-
bytesScanned: <FileSize bytes={bytesScanned} base={2} />,
672-
break: <br />,
673-
continueScanning: (
674-
<Button
675-
priority="link"
676-
onClick={resumeAutoFetch}
677-
aria-label={t('continue scanning')}
678-
>
679-
{t('Continue Scanning')}
680-
</Button>
681-
),
682-
}
669+
'We scanned [bytesScanned] so far but have not found anything matching your filters',
670+
{bytesScanned: <FileSize bytes={bytesScanned} base={2} />}
683671
)}
684672
</EmptyStateText>
673+
<EmptyStateText size="md">
674+
{t('We can keep digging or you can narrow down your search.')}
675+
</EmptyStateText>
676+
<Container paddingTop="md">
677+
<Button
678+
priority="default"
679+
onClick={resumeAutoFetch}
680+
aria-label={t('continue scanning')}
681+
>
682+
{t('Continue Scanning')}
683+
</Button>
684+
</Container>
685685
</EmptyStateWarning>
686686
</TableStatus>
687687
);

0 commit comments

Comments
 (0)