Tatsuya Ise 2 лет назад
Родитель
Сommit
4586dc655e

+ 1 - 1
apps/app/src/components/Admin/SlackIntegration/SlackIntegration.jsx

@@ -187,7 +187,7 @@ const SlackIntegration = () => {
   if (isLoading) {
   if (isLoading) {
     return (
     return (
       <div className="text-muted text-center">
       <div className="text-muted text-center">
-        <i className="fa fa-2x fa-spinner fa-pulse me-1"></i>
+        <span className="me-1"><LoadingSpinnerPulse /></span>
       </div>
       </div>
     );
     );
   }
   }

+ 1 - 1
apps/app/src/components/InAppNotification/InAppNotificationList.tsx

@@ -19,7 +19,7 @@ const InAppNotificationList: FC<Props> = (props: Props) => {
     return (
     return (
       <div className="wiki">
       <div className="wiki">
         <div className="text-muted text-center">
         <div className="text-muted text-center">
-          <i className="fa fa-2x fa-spinner fa-pulse me-1"></i>
+          <span className="me-1"><LoadingSpinnerPulse /></span>
         </div>
         </div>
       </div>
       </div>
     );
     );

+ 1 - 1
apps/app/src/components/InfiniteScroll.tsx

@@ -32,7 +32,7 @@ const useIntersection = <E extends HTMLElement>(): [boolean, Ref<E>] => {
 const LoadingIndicator = (): React.ReactElement => {
 const LoadingIndicator = (): React.ReactElement => {
   return (
   return (
     <div className="text-muted text-center">
     <div className="text-muted text-center">
-      <i className="fa fa-2x fa-spinner fa-pulse me-1"></i>
+      <span className="me-1"><LoadingSpinnerPulse /></span>
     </div>
     </div>
   );
   );
 };
 };

+ 1 - 1
apps/app/src/components/PrivateLegacyPages.tsx

@@ -61,7 +61,7 @@ const SearchResultListHead = React.memo((props: SearchResultListHeadProps): JSX.
   if (migrationStatus == null) {
   if (migrationStatus == null) {
     return (
     return (
       <div className="mw-0 flex-grow-1 flex-basis-0 m-5 text-muted text-center">
       <div className="mw-0 flex-grow-1 flex-basis-0 m-5 text-muted text-center">
-        <i className="fa fa-2x fa-spinner fa-pulse me-1"></i>
+        <span className="me-1"><LoadingSpinnerPulse /></span>
       </div>
       </div>
     );
     );
   }
   }