mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-19 15:51:33 +00:00
Bug 1742291 - correctly compare the names of shims when sorting them for display in about:compat; r=denschub,webcompat-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D131738
This commit is contained in:
parent
fd09342f97
commit
9b8f66595b
@ -459,7 +459,7 @@ class Shims {
|
||||
const shims = Array.from(this.shims.values()).map(
|
||||
this.getShimInfoForAboutCompat
|
||||
);
|
||||
shims.sort((a, b) => a.localeCompare(b));
|
||||
shims.sort((a, b) => a.name.localeCompare(b.name));
|
||||
return shims;
|
||||
}
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
"manifest_version": 2,
|
||||
"name": "Web Compatibility Interventions",
|
||||
"description": "Urgent post-release fixes for web compatibility.",
|
||||
"version": "28.4.0",
|
||||
"version": "28.5.0",
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "webcompat@mozilla.org",
|
||||
|
Loading…
x
Reference in New Issue
Block a user