From 323a4a17cfe8538fc6f0e1ee52059310789d88e1 Mon Sep 17 00:00:00 2001 From: Pujit Mehrotra Date: Wed, 30 Oct 2024 11:02:50 -0400 Subject: [PATCH] feat(web): add empty state to notifications list --- web/components/Notifications/List.vue | 8 ++++++++ web/components/Notifications/Sidebar.vue | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/web/components/Notifications/List.vue b/web/components/Notifications/List.vue index 3d3367aaa..9c2c8c839 100644 --- a/web/components/Notifications/List.vue +++ b/web/components/Notifications/List.vue @@ -7,6 +7,7 @@ import type { Importance, NotificationType } from "~/composables/gql/graphql"; import { useFragment } from "~/composables/gql/fragment-masking"; import { useQuery } from "@vue/apollo-composable"; import { vInfiniteScroll } from "@vueuse/components"; +import { CheckIcon } from "@heroicons/vue/24/solid"; /** * Page size is the max amount of items fetched from the api in a single request. @@ -63,6 +64,13 @@ async function onLoadMore() {