Title: [201607] trunk/Websites/perf.webkit.org
Revision
201607
Author
[email protected]
Date
2016-06-02 12:04:51 -0700 (Thu, 02 Jun 2016)

Log Message

Build fix after r201564.

* public/v3/pages/analysis-category-page.js:
(AnalysisCategoryPage.prototype.updateFromSerializedState):
* public/v3/pages/create-analysis-task-page.js:
(CreateAnalysisTaskPage.prototype.updateFromSerializedState):
(CreateAnalysisTaskPage.prototype.render):

Modified Paths

Diff

Modified: trunk/Websites/perf.webkit.org/ChangeLog (201606 => 201607)


--- trunk/Websites/perf.webkit.org/ChangeLog	2016-06-02 18:42:43 UTC (rev 201606)
+++ trunk/Websites/perf.webkit.org/ChangeLog	2016-06-02 19:04:51 UTC (rev 201607)
@@ -1,3 +1,13 @@
+2016-06-02  Ryosuke Niwa  <[email protected]>
+
+        Build fix after r201564.
+
+        * public/v3/pages/analysis-category-page.js:
+        (AnalysisCategoryPage.prototype.updateFromSerializedState):
+        * public/v3/pages/create-analysis-task-page.js:
+        (CreateAnalysisTaskPage.prototype.updateFromSerializedState):
+        (CreateAnalysisTaskPage.prototype.render):
+
 2016-05-31  Ryosuke Niwa  <[email protected]>
 
         v3 UI should support marking and unmarking outliers as well as hiding them

Modified: trunk/Websites/perf.webkit.org/public/v3/pages/analysis-category-page.js (201606 => 201607)


--- trunk/Websites/perf.webkit.org/public/v3/pages/analysis-category-page.js	2016-06-02 18:42:43 UTC (rev 201606)
+++ trunk/Websites/perf.webkit.org/public/v3/pages/analysis-category-page.js	2016-06-02 19:04:51 UTC (rev 201607)
@@ -32,6 +32,9 @@
 
     updateFromSerializedState(state, isOpen)
     {
+        if (state.category instanceof Set)
+            state.category = Array.from(state.category.values())[0];
+
         if (this.toolbar().setCategoryIfValid(state.category))
             this._renderedList = false;
 

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


--- trunk/Websites/perf.webkit.org/public/v3/pages/create-analysis-task-page.js	2016-06-02 18:42:43 UTC (rev 201606)
+++ trunk/Websites/perf.webkit.org/public/v3/pages/create-analysis-task-page.js	2016-06-02 19:04:51 UTC (rev 201607)
@@ -11,6 +11,9 @@
 
     updateFromSerializedState(state, isOpen)
     {
+        if (state.error instanceof Set)
+            state.error = Array.from(state.error.values())[0];
+
         this._errorMessage = state.error;
         if (!isOpen)
             this.render();
@@ -19,7 +22,6 @@
     render()
     {
         super.render();
-        console.log(this._errorMessage)
         if (this._errorMessage)
             this.content().querySelector('.message').textContent = this._errorMessage;
     }
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to