Skip to content

Commit

Permalink
[results.safari.apple.com] Handle configurations differentiated by ve…
Browse files Browse the repository at this point in the history
…rsion number

https://bugs.webkit.org/show_bug.cgi?id=270942
rdar://124561156

Reviewed by Elliott Williams.

* Tools/Scripts/libraries/resultsdbpy/resultsdbpy/view/static/js/configuration.js:
(Configuration.prototype.toKey): Include version in key if SDK is defined.

Canonical link: https://commits.webkit.org/276054@main
  • Loading branch information
JonWBedard committed Mar 14, 2024
1 parent bd17eb0 commit a7a0e51
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ class Configuration {
result += ' ' + this.platform
if (this.version_name != null)
result += ' ' + this.version_name;
else if (this.version != null)
if (this.version != null && (this.version_name == null || this.sdk != null))
result += ' ' + Configuration.integerToVersion(this.version);
if (this.sdk != null)
result += ' (' + this.sdk + ')';
Expand Down

0 comments on commit a7a0e51

Please sign in to comment.