|
@@ -83,18 +83,18 @@ export default class ImportCollectionItem extends React.Component {
|
|
|
} = this.props;
|
|
} = this.props;
|
|
|
|
|
|
|
|
return (
|
|
return (
|
|
|
- <div className="checkbox checkbox-info my-0">
|
|
|
|
|
|
|
+ <div className="custom-control custom-checkbox my-0">
|
|
|
<input
|
|
<input
|
|
|
type="checkbox"
|
|
type="checkbox"
|
|
|
id={collectionName}
|
|
id={collectionName}
|
|
|
name={collectionName}
|
|
name={collectionName}
|
|
|
- className="form-check-input"
|
|
|
|
|
|
|
+ className="custom-control-input"
|
|
|
value={collectionName}
|
|
value={collectionName}
|
|
|
checked={isSelected}
|
|
checked={isSelected}
|
|
|
disabled={isImporting}
|
|
disabled={isImporting}
|
|
|
onChange={this.changeHandler}
|
|
onChange={this.changeHandler}
|
|
|
/>
|
|
/>
|
|
|
- <label className="text-capitalize form-check-label" htmlFor={collectionName}>
|
|
|
|
|
|
|
+ <label className="text-capitalize custom-control-label" htmlFor={collectionName}>
|
|
|
{collectionName}
|
|
{collectionName}
|
|
|
</label>
|
|
</label>
|
|
|
</div>
|
|
</div>
|