aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/apps/projectBranches/components/LifetimeInformationRenderer.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/apps/projectBranches/components/LifetimeInformationRenderer.tsx')
-rw-r--r--server/sonar-web/src/main/js/apps/projectBranches/components/LifetimeInformationRenderer.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/sonar-web/src/main/js/apps/projectBranches/components/LifetimeInformationRenderer.tsx b/server/sonar-web/src/main/js/apps/projectBranches/components/LifetimeInformationRenderer.tsx
index edb949f5f50..afa5d48ce77 100644
--- a/server/sonar-web/src/main/js/apps/projectBranches/components/LifetimeInformationRenderer.tsx
+++ b/server/sonar-web/src/main/js/apps/projectBranches/components/LifetimeInformationRenderer.tsx
@@ -20,7 +20,7 @@
import * as React from 'react';
import { FormattedMessage } from 'react-intl';
import Link from '../../../components/common/Link';
-import DeferredSpinner from '../../../components/ui/DeferredSpinner';
+import Spinner from '../../../components/ui/Spinner';
import { translate } from '../../../helpers/l10n';
import { formatMeasure } from '../../../helpers/measures';
@@ -34,7 +34,7 @@ function LifetimeInformationRenderer(props: LifetimeInformationRendererProps) {
const { branchAndPullRequestLifeTimeInDays, canAdmin, loading } = props;
return (
- <DeferredSpinner loading={loading}>
+ <Spinner loading={loading}>
{branchAndPullRequestLifeTimeInDays && (
<p className="page-description">
<FormattedMessage
@@ -53,7 +53,7 @@ function LifetimeInformationRenderer(props: LifetimeInformationRendererProps) {
)}
</p>
)}
- </DeferredSpinner>
+ </Spinner>
);
}