|
|
|
@ -1,5 +1,6 @@
|
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
import Alert from 'Components/Alert';
|
|
|
|
|
import LoadingIndicator from 'Components/Loading/LoadingIndicator';
|
|
|
|
|
import PageContent from 'Components/Page/PageContent';
|
|
|
|
|
import PageContentBody from 'Components/Page/PageContentBody';
|
|
|
|
@ -9,7 +10,7 @@ import PageToolbarSection from 'Components/Page/Toolbar/PageToolbarSection';
|
|
|
|
|
import TableOptionsModalWrapper from 'Components/Table/TableOptions/TableOptionsModalWrapper';
|
|
|
|
|
import VirtualTable from 'Components/Table/VirtualTable';
|
|
|
|
|
import VirtualTableRow from 'Components/Table/VirtualTableRow';
|
|
|
|
|
import { align, icons, sortDirections } from 'Helpers/Props';
|
|
|
|
|
import { align, icons, kinds, sortDirections } from 'Helpers/Props';
|
|
|
|
|
import hasDifferentItemsOrOrder from 'Utilities/Object/hasDifferentItemsOrOrder';
|
|
|
|
|
import translate from 'Utilities/String/translate';
|
|
|
|
|
import getSelectedIds from 'Utilities/Table/getSelectedIds';
|
|
|
|
@ -236,9 +237,9 @@ class UnmappedFilesTable extends Component {
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
isPopulated && !error && !items.length &&
|
|
|
|
|
<div>
|
|
|
|
|
<Alert kind={kinds.INFO}>
|
|
|
|
|
Success! My work is done, all files on disk are matched to known tracks.
|
|
|
|
|
</div>
|
|
|
|
|
</Alert>
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|