order contacts by name & note outside network as "outside your network"

This commit is contained in:
2024-02-18 14:58:10 -07:00
parent 3475c32e1f
commit 783b38df65
3 changed files with 5 additions and 13 deletions

View File

@@ -364,11 +364,7 @@ export default class ContactsView extends Vue {
if (this.showGiveNumbers) {
this.loadGives();
}
const allContacts = await db.contacts.toArray();
this.contacts = R.sort(
(a: Contact, b) => (a.name || "").localeCompare(b.name || ""),
allContacts,
);
this.contacts = await db.contacts.orderBy("name").toArray();
if (this.contactEndorserUrl) {
await this.addContactFromScan(this.contactEndorserUrl);
@@ -576,11 +572,7 @@ export default class ContactsView extends Vue {
-1,
);
}
const allContacts = await db.contacts.toArray();
this.contacts = R.sort(
(a: Contact, b) => (a.name || "").localeCompare(b.name || ""),
allContacts,
);
this.contacts = await db.contacts.orderBy("name").toArray();
return;
}