diff --git a/src/views/ContactGiftingView.vue b/src/views/ContactGiftingView.vue
index 11b7821..d0fa939 100644
--- a/src/views/ContactGiftingView.vue
+++ b/src/views/ContactGiftingView.vue
@@ -24,8 +24,12 @@
-
-
+
Anonymous
@@ -46,7 +50,11 @@
>
+ >
{{ contact.name || "(no name)" }}
@@ -87,9 +95,10 @@ import { Account } from "@/db/tables/accounts";
import { Contact } from "@/db/tables/contacts";
import AlertMessage from "@/components/AlertMessage";
import QuickNav from "@/components/QuickNav";
+import EntityIcon from "@/components/EntityIcon";
@Component({
- components: { GiftedDialog, AlertMessage, QuickNav },
+ components: { GiftedDialog, AlertMessage, QuickNav, EntityIcon },
})
export default class HomeView extends Vue {
activeDid = "";
diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue
index d7bb77f..a582403 100644
--- a/src/views/HomeView.vue
+++ b/src/views/HomeView.vue
@@ -16,9 +16,11 @@
:key="contact.did"
@click="openDialog(contact)"
>
-
-
-
+
@@ -95,9 +97,10 @@ import { createAndSubmitGive, didInfo } from "@/libs/endorserServer";
import { Contact } from "@/db/tables/contacts";
import AlertMessage from "@/components/AlertMessage";
import QuickNav from "@/components/QuickNav";
+import EntityIcon from "@/components/EntityIcon";
@Component({
- components: { GiftedDialog, AlertMessage, QuickNav },
+ components: { GiftedDialog, AlertMessage, QuickNav, EntityIcon },
})
export default class HomeView extends Vue {
activeDid = "";