Skip to content

Commit

Permalink
Bug 1364894 - eslint --fix for computed-property-spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley committed Oct 3, 2017
1 parent 1b1ea0c commit ba32cbc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ui/js/directives/treeherder/clonejobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -729,7 +729,7 @@ treeherder.directive('thCloneJobs', [
if (orderedPlatforms[p] === platformName) {
//Target row for appending should be one less
//than the position of the platform name
$(tableRows[ p - 1 ]).after(rowEl);
$(tableRows[p - 1]).after(rowEl);
break;
}
}
Expand Down
2 changes: 1 addition & 1 deletion ui/js/models/resultsets_store.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ treeherder.factory('ThResultSetStore', [
platformName = job.platform;
platformOption = job.platform_option;

if (_.isEmpty(repositories[repoName].rsMap[ resultsetId ])) {
if (_.isEmpty(repositories[repoName].rsMap[resultsetId])) {
//We don't have this resultset
return;
}
Expand Down

0 comments on commit ba32cbc

Please sign in to comment.