mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-21 19:45:23 -04:00
[neutratywy] fix sortowania wielkich liter
This commit is contained in:
parent
c34eebf9f0
commit
d8a553dc61
@ -292,7 +292,10 @@
|
||||
computed: {
|
||||
nouns() {
|
||||
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)];
|
||||
}
|
||||
}, this);
|
||||
|
Loading…
x
Reference in New Issue
Block a user