mirror of
https://github.com/urbit/shrub.git
synced 2024-11-30 22:15:47 +03:00
Merge pull request #2559 from urbit/mp/publish/recompare
publish: sort inclusive of accented characters
This commit is contained in:
commit
c410263c5b
@ -61,13 +61,9 @@ export class Sidebar extends Component {
|
||||
notebooks = new Map(
|
||||
[...notebooks.entries()].sort((a, b) => {
|
||||
if ((a[1]) && (b[1])) {
|
||||
if (a[1]["title"].toLowerCase() < b[1]["title"].toLowerCase()) {
|
||||
return -1;
|
||||
}
|
||||
if (a[1]["title"].toLowerCase() > b[1]["title"].toLowerCase()) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
return a[1]["title"].toLowerCase().localeCompare(
|
||||
b[1]["title"].toLowerCase()
|
||||
);
|
||||
}
|
||||
})
|
||||
);
|
||||
@ -76,13 +72,9 @@ export class Sidebar extends Component {
|
||||
notebooks = new Map(
|
||||
[...notebooks.entries()].sort((a, b) => {
|
||||
if ((a[1]) && (b[1])) {
|
||||
if (a[1]["title"].toLowerCase() > b[1]["title"].toLowerCase()) {
|
||||
return -1;
|
||||
}
|
||||
if (a[1]["title"].toLowerCase() < b[1]["title"].toLowerCase()) {
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
return b[1]["title"].toLowerCase().localeCompare(
|
||||
a[1]["title"].toLowerCase()
|
||||
);
|
||||
}
|
||||
})
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user