Skip to content
This repository has been archived by the owner on Sep 12, 2023. It is now read-only.

Commit

Permalink
fix(department): import the missing component
Browse files Browse the repository at this point in the history
  • Loading branch information
KennethTrecy committed Nov 15, 2022
1 parent b273a71 commit 0da5e18
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pages/department/read.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,15 @@ import type { DeserializedDepartmentDocument } from "$/types/documents/departmen
import Fetcher from "$@/fetchers/department"
import makeSwitch from "$@/helpers/make_switch"
import RequestEnvironment from "$/singletons/request_environment"
import fillSuccessMessages from "$@/helpers/fill_success_messages"
import extractAllErrorDetails from "$@/helpers/extract_all_error_details"
import RequestEnvironment from "$/singletons/request_environment"
import { department as permissionGroup } from "$/permissions/permission_list"
import { UPDATE, ARCHIVE_AND_RESTORE } from "$/permissions/department_combinations"
import Checkbox from "@/fields/checkbox.vue"
import Suspensible from "@/helpers/suspensible.vue"
import NonSensitiveTextField from "@/fields/non-sensitive_text_capital.vue"
import ReceivedErrors from "@/helpers/message_handlers/received_errors.vue"
import ConfirmationPassword from "@/authentication/confirmation_password.vue"
Expand All @@ -86,7 +87,6 @@ const pageContext = inject("pageContext") as PageContext<"deserialized", "depart
const { pageProps } = pageContext
const { userProfile } = pageProps
const department = ref<DeserializedDepartmentDocument<"read">>(
pageProps.department as DeserializedDepartmentDocument<"read">
)
Expand Down

0 comments on commit 0da5e18

Please sign in to comment.