From 1de6a89269a029c6dc63f6153857be4fff74bf5c Mon Sep 17 00:00:00 2001 From: KoloMl Date: Thu, 6 Feb 2025 14:20:36 +0400 Subject: [PATCH] Moved ProfileView to features directory --- src/components/{maintenance => features}/ProfileView.svelte | 0 src/routes/features/maintenance/[id]/+page.svelte | 2 +- src/routes/features/maintenance/import/+page.svelte | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) rename src/components/{maintenance => features}/ProfileView.svelte (100%) 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/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/import/+page.svelte b/src/routes/features/maintenance/import/+page.svelte index b9f28ee..6249efe 100644 --- a/src/routes/features/maintenance/import/+page.svelte +++ b/src/routes/features/maintenance/import/+page.svelte @@ -4,7 +4,7 @@ import FormContainer from "$components/ui/forms/FormContainer.svelte"; import MaintenanceProfile from "$entities/MaintenanceProfile.ts"; import FormControl from "$components/ui/forms/FormControl.svelte"; - import ProfileView from "$components/maintenance/ProfileView.svelte"; + import ProfileView from "$components/features/ProfileView.svelte"; import {maintenanceProfilesStore} from "$stores/maintenance-profiles-store.js"; import {goto} from "$app/navigation"; import EntitiesTransporter from "$lib/extension/EntitiesTransporter.ts";