|
|
@@ -10,7 +10,7 @@ import { withUnstatedContainers } from '../UnstatedUtils';
|
|
|
import AppContainer from '../../services/AppContainer';
|
|
|
import AdminSocketIoContainer from '../../services/AdminSocketIoContainer';
|
|
|
|
|
|
-import ProgressBar from './Common/ProgressBar';
|
|
|
+import LabeledProgressBar from './Common/LabeledProgressBar';
|
|
|
|
|
|
import SelectCollectionsModal from './ExportArchiveData/SelectCollectionsModal';
|
|
|
import ArchiveFilesTable from './ExportArchiveData/ArchiveFilesTable';
|
|
|
@@ -169,7 +169,7 @@ class ExportArchiveDataPage extends React.Component {
|
|
|
const { collectionName, currentCount, totalCount } = progressData;
|
|
|
return (
|
|
|
<div className="col-md-6" key={collectionName}>
|
|
|
- <ProgressBar
|
|
|
+ <LabeledProgressBar
|
|
|
header={collectionName}
|
|
|
currentCount={currentCount}
|
|
|
totalCount={totalCount}
|
|
|
@@ -192,7 +192,7 @@ class ExportArchiveDataPage extends React.Component {
|
|
|
return (
|
|
|
<div className="row px-3">
|
|
|
<div className="col-md-12" key="progressBarForZipping">
|
|
|
- <ProgressBar
|
|
|
+ <LabeledProgressBar
|
|
|
header="Zip Files"
|
|
|
currentCount={1}
|
|
|
totalCount={1}
|