Title: [255984] trunk/Tools
Revision
255984
Author
[email protected]
Date
2020-02-06 14:32:09 -0800 (Thu, 06 Feb 2020)

Log Message

results.webkitorg: Dead CI links
https://bugs.webkit.org/show_bug.cgi?id=207340

Reviewed by Alexey Proskuryakov.

* resultsdbpy/resultsdbpy/view/static/js/configuration.js:
(Configuration.prototype.toParams): Version name and version number often duplicate the
same information, exception version number is often more specific than is useful.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (255983 => 255984)


--- trunk/Tools/ChangeLog	2020-02-06 22:31:41 UTC (rev 255983)
+++ trunk/Tools/ChangeLog	2020-02-06 22:32:09 UTC (rev 255984)
@@ -1,3 +1,14 @@
+2020-02-06  Jonathan Bedard  <[email protected]>
+
+        results.webkitorg: Dead CI links
+        https://bugs.webkit.org/show_bug.cgi?id=207340
+
+        Reviewed by Alexey Proskuryakov.
+
+        * resultsdbpy/resultsdbpy/view/static/js/configuration.js:
+        (Configuration.prototype.toParams): Version name and version number often duplicate the
+        same information, exception version number is often more specific than is useful.
+
 2020-02-06  Brent Fulgham  <[email protected]>
 
         Prevent navigating top level frames to Data URLs

Modified: trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/configuration.js (255983 => 255984)


--- trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/configuration.js	2020-02-06 22:31:41 UTC (rev 255983)
+++ trunk/Tools/resultsdbpy/resultsdbpy/view/static/js/configuration.js	2020-02-06 22:32:09 UTC (rev 255984)
@@ -240,7 +240,7 @@
             version_name = this.version_name.substring(0, this.version_name.length - 2)
         return {
             platform: [this.platform],
-            version:[this.version ? Configuration.integerToVersion(this.version) : null],
+            version:[this.version && !this.version_name ? Configuration.integerToVersion(this.version) : null],
             version_name: [version_name],
             is_simulator: [this.is_simulator === null ? null : (this.is_simulator ? 'True' : 'False')],
             style: [this.style],
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to