mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-22 12:03:25 -04:00
[neutratywy] fix sortowania wielkich liter
This commit is contained in:
parent
c34eebf9f0
commit
d8a553dc61
@ -292,7 +292,10 @@
|
|||||||
computed: {
|
computed: {
|
||||||
nouns() {
|
nouns() {
|
||||||
return buildDict(function* (that) {
|
return buildDict(function* (that) {
|
||||||
for (let w of that.nounsRaw) {
|
const sorted = that.nounsRaw.sort((a, b) => {
|
||||||
|
return a.masc.toLowerCase().localeCompare(b.masc.toLowerCase());
|
||||||
|
});
|
||||||
|
for (let w of sorted) {
|
||||||
yield [w.id, new Noun(w)];
|
yield [w.id, new Noun(w)];
|
||||||
}
|
}
|
||||||
}, this);
|
}, this);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user