فهرست منبع

adjust progress bar

itizawa 6 سال پیش
والد
کامیت
1f56b78112
1فایلهای تغییر یافته به همراه3 افزوده شده و 3 حذف شده
  1. 3 3
      src/client/js/components/Admin/ImportData/GrowiArchive/ImportCollectionItem.jsx

+ 3 - 3
src/client/js/components/Admin/ImportData/GrowiArchive/ImportCollectionItem.jsx

@@ -167,9 +167,9 @@ export default class ImportCollectionItem extends React.Component {
 
     return (
       <Progress multi className="mb-0">
-        <Progress bar max={total} color="info" animated={isImporting} value={insertedCount} />
-        <Progress bar max={total} color="success" animated={isImporting} value={modifiedCount} />
-        <Progress bar max={total} color="danger" animated={isImporting} value={errorsCount} />
+        <Progress bar max={total} color="info" striped={isImporting} animated={isImporting} value={insertedCount} />
+        <Progress bar max={total} color="success" striped={isImporting} animated={isImporting} value={modifiedCount} />
+        <Progress bar max={total} color="danger" striped={isImporting} animated={isImporting} value={errorsCount} />
       </Progress>
     );
   }