diff --git a/.gitignore b/.gitignore
index f493aadf0..05531517e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -132,7 +132,6 @@ setup/Output/
bin
obj
output/*
-_temp*
# .NET Core
project.lock.json
@@ -140,6 +139,12 @@ project.fragment.lock.json
artifacts/
**/Properties/launchSettings.json
+#VS outout folders
+bin
+obj
+output/*
+
+
# macOS metadata files
._*
.DS_Store
diff --git a/frontend/src/Wanted/CutoffUnmet/CutoffUnmetRow.js b/frontend/src/Wanted/CutoffUnmet/CutoffUnmetRow.js
index c8e02f63c..452e2947a 100644
--- a/frontend/src/Wanted/CutoffUnmet/CutoffUnmetRow.js
+++ b/frontend/src/Wanted/CutoffUnmet/CutoffUnmetRow.js
@@ -3,18 +3,18 @@ import React from 'react';
import albumEntities from 'Album/albumEntities';
import AlbumSearchCellConnector from 'Album/AlbumSearchCellConnector';
import AlbumTitleLink from 'Album/AlbumTitleLink';
-// import EpisodeStatusConnector from 'Album/EpisodeStatusConnector';
+import EpisodeStatusConnector from 'Album/EpisodeStatusConnector';
import ArtistNameLink from 'Artist/ArtistNameLink';
import RelativeDateCellConnector from 'Components/Table/Cells/RelativeDateCellConnector';
import TableRowCell from 'Components/Table/Cells/TableRowCell';
import TableSelectCell from 'Components/Table/Cells/TableSelectCell';
import TableRow from 'Components/Table/TableRow';
-// import styles from './CutoffUnmetRow.css';
+import styles from './CutoffUnmetRow.css';
function CutoffUnmetRow(props) {
const {
id,
- // trackFileId,
+ trackFileId,
artist,
releaseDate,
foreignAlbumId,
@@ -99,20 +99,20 @@ function CutoffUnmetRow(props) {
);
}
- // if (name === 'status') {
- // return (
- //
- //
- //
- // );
- // }
+ if (name === 'status') {
+ return (
+
+
+
+ );
+ }
if (name === 'actions') {
return (
@@ -136,7 +136,7 @@ function CutoffUnmetRow(props) {
CutoffUnmetRow.propTypes = {
id: PropTypes.number.isRequired,
- // trackFileId: PropTypes.number,
+ trackFileId: PropTypes.number,
artist: PropTypes.object.isRequired,
releaseDate: PropTypes.string.isRequired,
foreignAlbumId: PropTypes.string.isRequired,