add different identicons for people (and increment version & add -beta)

This commit is contained in:
2024-01-17 19:27:05 -07:00
parent 660436c8fa
commit 563b5793a9
11 changed files with 457 additions and 54 deletions

View File

@@ -52,11 +52,11 @@
class="block py-4 flex gap-4"
>
<div class="flex-none w-12">
<EntityIcon
<ProjectIcon
:entityId="project.handleId"
:iconSize="48"
class="inline-block align-middle border border-slate-300 rounded-md"
></EntityIcon>
></ProjectIcon>
</div>
<div class="grow overflow-hidden">
@@ -80,7 +80,7 @@ import { accessToken } from "@/libs/crypto";
import { IIdentifier } from "@veramo/core";
import InfiniteScroll from "@/components/InfiniteScroll.vue";
import QuickNav from "@/components/QuickNav.vue";
import EntityIcon from "@/components/EntityIcon.vue";
import ProjectIcon from "@/components/ProjectIcon.vue";
import TopMessage from "@/components/TopMessage.vue";
import { ProjectData } from "@/libs/endorserServer";
@@ -92,7 +92,7 @@ interface Notification {
}
@Component({
components: { InfiniteScroll, QuickNav, EntityIcon, TopMessage },
components: { InfiniteScroll, QuickNav, ProjectIcon, TopMessage },
})
export default class ProjectsView extends Vue {
$notify!: (notification: Notification, timeout?: number) => void;