diff --git a/src/components/maintenance/ProfileView.svelte b/src/components/features/ProfileView.svelte similarity index 100% rename from src/components/maintenance/ProfileView.svelte rename to src/components/features/ProfileView.svelte diff --git a/src/components/web-components/TagsEditor.svelte b/src/components/tags/TagsEditor.svelte similarity index 100% rename from src/components/web-components/TagsEditor.svelte rename to src/components/tags/TagsEditor.svelte diff --git a/src/routes/features/groups/[id]/edit/+page.svelte b/src/routes/features/groups/[id]/edit/+page.svelte index 746c79d..065e1d5 100644 --- a/src/routes/features/groups/[id]/edit/+page.svelte +++ b/src/routes/features/groups/[id]/edit/+page.svelte @@ -8,7 +8,7 @@ import TextField from "$components/ui/forms/TextField.svelte"; import Menu from "$components/ui/menu/Menu.svelte"; import MenuItem from "$components/ui/menu/MenuItem.svelte"; - import TagsEditor from "$components/web-components/TagsEditor.svelte"; + import TagsEditor from "$components/tags/TagsEditor.svelte"; import TagGroup from "$entities/TagGroup.ts"; import {tagGroupsStore} from "$stores/tag-groups-store.js"; diff --git a/src/routes/features/maintenance/[id]/+page.svelte b/src/routes/features/maintenance/[id]/+page.svelte index 294d229..61fc9ff 100644 --- a/src/routes/features/maintenance/[id]/+page.svelte +++ b/src/routes/features/maintenance/[id]/+page.svelte @@ -4,7 +4,7 @@ import {page} from "$app/stores"; import {goto} from "$app/navigation"; import {activeProfileStore, maintenanceProfilesStore} from "$stores/maintenance-profiles-store.js"; - import ProfileView from "$components/maintenance/ProfileView.svelte"; + import ProfileView from "$components/features/ProfileView.svelte"; import MenuCheckboxItem from "$components/ui/menu/MenuCheckboxItem.svelte"; const profileId = $page.params.id; diff --git a/src/routes/features/maintenance/[id]/edit/+page.svelte b/src/routes/features/maintenance/[id]/edit/+page.svelte index 3718aea..4372f45 100644 --- a/src/routes/features/maintenance/[id]/edit/+page.svelte +++ b/src/routes/features/maintenance/[id]/edit/+page.svelte @@ -1,7 +1,7 @@