Tatsuya Ise 2 лет назад
Родитель
Сommit
6bee2b0644
1 измененных файлов с 1 добавлено и 0 удалено
  1. 1 0
      apps/app/src/components/Admin/G2GDataTransferStatusIcon.tsx

+ 1 - 0
apps/app/src/components/Admin/G2GDataTransferStatusIcon.tsx

@@ -15,6 +15,7 @@ interface Props extends ComponentPropsWithoutRef<'i'>{
 const G2GDataTransferStatusIcon = ({ status, className, ...props }: Props): JSX.Element => {
   if (status === G2G_PROGRESS_STATUS.IN_PROGRESS) {
     return (
+      // TODO: https://redmine.weseek.co.jp/issues/141781
       <i className={`fa fa-spinner fa-pulse fa-fw ${className}`} aria-label="in progress" {...props} />
     );
   }