Title: [216840] trunk/Websites/perf.webkit.org
Revision
216840
Author
rn...@webkit.org
Date
2017-05-14 01:18:51 -0700 (Sun, 14 May 2017)

Log Message

Build fix. Added a missing null check.

* public/v3/pages/analysis-task-page.js:
(AnalysisTaskConfiguratorPane.prototype.setTestGroups):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (216839 => 216840)


--- trunk/Websites/perf.webkit.org/ChangeLog	2017-05-14 07:31:49 UTC (rev 216839)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2017-05-14 08:18:51 UTC (rev 216840)
@@ -1,3 +1,10 @@
+2017-05-14  Ryosuke Niwa  <rn...@webkit.org>
+
+        Build fix. Added a missing null check.
+
+        * public/v3/pages/analysis-task-page.js:
+        (AnalysisTaskConfiguratorPane.prototype.setTestGroups):
+
 2017-05-11  Ryosuke Niwa  <rn...@webkit.org>
 
         Remove the code for old syncing script configuration in BuildbotSyncer

Modified: trunk/Websites/perf.webkit.org/public/v3/pages/analysis-task-page.js (216839 => 216840)


--- trunk/Websites/perf.webkit.org/public/v3/pages/analysis-task-page.js	2017-05-14 07:31:49 UTC (rev 216839)
+++ trunk/Websites/perf.webkit.org/public/v3/pages/analysis-task-page.js	2017-05-14 08:18:51 UTC (rev 216840)
@@ -153,7 +153,7 @@
     {
         this._currentGroup = currentGroup;
         const form = this.part('form');
-        if (!form.hasCommitSets())
+        if (!form.hasCommitSets() && currentGroup)
             form.setConfigurations(currentGroup.test(), currentGroup.platform(), currentGroup.repetitionCount(), currentGroup.requestedCommitSets());
         this.enqueueToRender();
     }
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to