Skip to content

Commit

Permalink
Bug 1364894 - eslint --fix for no-useless-concat
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley committed Oct 3, 2017
1 parent d5800c2 commit ff63391
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ui/js/filters.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ treeherder.filter('linkifyBugs', function () {
// Settings
var bug_title = 'bugzilla.mozilla.org';
var bug_url = '<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=$1" ' +
'data-bugid="$1" ' + 'title="' + bug_title + '">$1</a>';
'data-bugid="$1" title="' + bug_title + '">$1</a>';
var pr_title = 'github.com';
var pr_url = '<a href="https://github.com/mozilla-b2g/gaia/pull/$1" ' +
'data-prid="$1" ' + 'title="' + pr_title + '">$1</a>';
'data-prid="$1" title="' + pr_title + '">$1</a>';

if (bug_matches) {
// Separate passes to preserve prefix
Expand Down
2 changes: 1 addition & 1 deletion ui/plugins/auto_classification/controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ treeherder.controller('ThErrorLineController', [
var bugSuggestionOptions = bugSuggestions
.filter(bug => !autoclassifiedBugs.has(bug.id))
.map(bugSuggestion => new ThClassificationOption("unstructuredBug",
line.id + "-" + "ub-" + bugSuggestion.id,
line.id + "-ub-" + bugSuggestion.id,
null,
bugSuggestion.id,
bugSuggestion.summary,
Expand Down

0 comments on commit ff63391

Please sign in to comment.