Fixed eslint errors and re-enabled build.sh check (#150)

* Fixed eslint errors and re-enabled build.sh check

* Corrected typo

* Corrected typo

* Disabled max-params on files with warnings

* Fixes for PR comments

* Fixes for PR comments

* Fixes for PR comments

* Fixes for PR comments

* Fixes for PR comments

* Fixes for PR comments
This commit is contained in:
Tynan CR
2017-12-17 00:49:47 -05:00
committed by Qstick
parent 8116e66d52
commit 9d00a17ade
51 changed files with 84 additions and 103 deletions
@@ -14,13 +14,10 @@ function createMapStateToProps() {
createTrackFileSelector(),
createCommandsSelector(),
(id, sceneSeasonNumber, artist, trackFile, commands) => {
const alternateTitles = sceneSeasonNumber ? _.filter(artist.alternateTitles, { sceneSeasonNumber }) : [];
return {
artistMonitored: artist.monitored,
trackFilePath: trackFile ? trackFile.path : null,
trackFileRelativePath: trackFile ? trackFile.relativePath : null,
alternateTitles
trackFileRelativePath: trackFile ? trackFile.relativePath : null
};
}
);