From 85899c51a171479ab5e69686a8a8fef9ead7e732 Mon Sep 17 00:00:00 2001 From: NextFire Date: Tue, 10 Sep 2024 23:10:47 +0200 Subject: [PATCH] projection: use user uuid to generate color --- components/Projection.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/Projection.vue b/components/Projection.vue index 0e4dd5d..e1ae481 100644 --- a/components/Projection.vue +++ b/components/Projection.vue @@ -10,7 +10,7 @@ const eventSources = props.projection.participants.map( id: p.discord_username, url: `/api/calendars/${p.discord_id_str}`, format: "ics", - color: uniqolor(p.discord_id_str).color, + color: uniqolor(p.id).color, } satisfies EventSourceInput) );