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 46a4ec2 commit 026e4c4Copy full SHA for 026e4c4
static/app/views/dashboards/widgetCard/chart.tsx
@@ -608,20 +608,12 @@ function LoadingScreen({
608
<StyledTransparentLoadingMask visible={loading}>
609
<LoadingIndicator mini />
610
{showLoadingText && (
611
- <LoadingText id="loading-text">
612
- {t('Turning data into pixels - almost ready')}
613
- </LoadingText>
+ <p id="loading-text">{t('Turning data into pixels - almost ready')}</p>
614
)}
615
</StyledTransparentLoadingMask>
616
);
617
}
618
619
-const LoadingText = styled('p')`
620
- text-align: center;
621
- position: relative;
622
- z-index: 500000;
623
-`;
624
-
625
const LoadingPlaceholder = styled(({className}: PlaceholderProps) => (
626
<Placeholder height="200px" className={className} />
627
))`
0 commit comments