* public/v3/pages/analysis-task-page.js:
(AnalysisTaskPage.prototype.render):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@198362
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
2016-03-17 Ryosuke Niwa <rniwa@webkit.org>
+ Fix a typo which was supposed to be fixed in r198351.
+
+ * public/v3/pages/analysis-task-page.js:
+ (AnalysisTaskPage.prototype.render):
+
+2016-03-17 Ryosuke Niwa <rniwa@webkit.org>
+
An analysis task should be closed if a progression cause is identified
https://bugs.webkit.org/show_bug.cgi?id=155549
var self = this;
this._bugList.setList(this._task.bugs().map(function (bug) {
return new MutableListItem(bug.bugTracker(), bug.label(), bug.title(), bug.url(),
- 'Disassociate this bug', self._dissociateBug.bind(self, bug));
+ 'Dissociate this bug', self._dissociateBug.bind(self, bug));
}));
this._causeList.setList(this._task.causes().map(this._makeCommitListItem.bind(this)));