From 30f92374d0e4af68fbfacc8283ef79792ddad6fc Mon Sep 17 00:00:00 2001 From: Eli Bosley Date: Wed, 2 Oct 2024 17:31:56 -0400 Subject: [PATCH] fix: floating-ui fixes --- web/components/Notifications/Item.vue | 5 ++--- web/package.json | 10 ++++++++-- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/web/components/Notifications/Item.vue b/web/components/Notifications/Item.vue index 2b81da917..4128a4226 100644 --- a/web/components/Notifications/Item.vue +++ b/web/components/Notifications/Item.vue @@ -49,8 +49,7 @@ const icon = computed<{ component: Component, color: string } | null>(() => { Archive Notification - - + diff --git a/web/package.json b/web/package.json index 4465d9d1b..c664a56db 100644 --- a/web/package.json +++ b/web/package.json @@ -49,6 +49,9 @@ }, "dependencies": { "@apollo/client": "^3.10.4", + "@floating-ui/dom": "^1.6.11", + "@floating-ui/utils": "^0.2.8", + "@floating-ui/vue": "^1.1.5", "@headlessui/vue": "^1.7.22", "@heroicons/vue": "^2.1.3", "@pinia/nuxt": "^0.5.1", @@ -70,10 +73,13 @@ "radix-vue": "^1.9.6", "semver": "^7.6.2", "tailwind-merge": "^2.5.2", - "vue-i18n": "^9.13.1", + "vue-i18n": "^9.14.1", "wretch": "^2.8.1" }, "overrides": { - "vue": "latest" + "vue": "latest", + "radix-vue": { + "@floating-ui/vue": "^1.1.5" + } } }