These changes are meant to make it possible for new events that come in to immediately render in the components that depend on them.
This commit is contained in:
parent
74ef9a8b3a
commit
cecb9ef0f0
5 changed files with 92 additions and 59 deletions
|
|
@ -28,7 +28,7 @@ import { Contact } from "@/type/api";
|
|||
|
||||
const storeResource = useStoreResource();
|
||||
const contacts = computedAsync(() => {
|
||||
return storeResource.contact.byAll();
|
||||
return Array.from(storeResource.contact.byURI.values());
|
||||
});
|
||||
const selectedContact = ref<Contact | undefined>(undefined);
|
||||
const handleSelectionChange = (selection: Contact | undefined) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue