From 523e8dab2bcb29bba44e8c4773c920bd7f30e354 Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sat, 15 Jun 2024 20:44:19 +0200 Subject: [PATCH] feat(components): align component name casing Notifications --- frontend/src/components/home/TheNavigation.vue | 2 +- .../notifications/{notifications.vue => Notifications.vue} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename frontend/src/components/notifications/{notifications.vue => Notifications.vue} (100%) diff --git a/frontend/src/components/home/TheNavigation.vue b/frontend/src/components/home/TheNavigation.vue index 002b3bda7..4da2ccaac 100644 --- a/frontend/src/components/home/TheNavigation.vue +++ b/frontend/src/components/home/TheNavigation.vue @@ -117,7 +117,7 @@ import { RIGHTS as Rights } from '@/constants/rights' import ProjectSettingsDropdown from '@/components/project/project-settings-dropdown.vue' import Dropdown from '@/components/misc/Dropdown.vue' import DropdownItem from '@/components/misc/DropdownItem.vue' -import Notifications from '@/components/notifications/notifications.vue' +import Notifications from '@/components/notifications/Notifications.vue' import Logo from '@/components/home/Logo.vue' import BaseButton from '@/components/base/BaseButton.vue' import MenuButton from '@/components/home/MenuButton.vue' diff --git a/frontend/src/components/notifications/notifications.vue b/frontend/src/components/notifications/Notifications.vue similarity index 100% rename from frontend/src/components/notifications/notifications.vue rename to frontend/src/components/notifications/Notifications.vue