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

Commit

Permalink
fix(page): import missing component
Browse files Browse the repository at this point in the history
  • Loading branch information
lemredd committed Nov 24, 2022
1 parent b95379f commit 06d2bf9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pages/tag/read.page.vue
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ import fillSuccessMessages from "$@/helpers/fill_success_messages"
import RequestEnvironment from "$/singletons/request_environment"
import Suspensible from "@/helpers/suspensible.vue"
import TextualField from "@/fields/non-sensitive_text.vue"
import ListRedirector from "@/helpers/list_redirector.vue"
import extractAllErrorDetails from "$@/helpers/extract_all_error_details"
Expand All @@ -90,12 +91,8 @@ const tags = ref<DeserializedTagDocument>(
const managementInfo = computed<TagManagementInfo>(
() => makeManagementInfo(userProfile, tags.value.data)
)
const mayArchiveTag = computed<boolean>(
() => managementInfo.value.mayArchiveTag)
const mayRestoreTag = computed<boolean>(
() => managementInfo.value.mayRestoreTag)
const mayArchiveTag = computed<boolean>(() => managementInfo.value.mayArchiveTag)
const mayRestoreTag = computed<boolean>(() => managementInfo.value.mayRestoreTag)
const password = ref<string>(
RequestEnvironment.isNotOnProduction
Expand Down

0 comments on commit 06d2bf9

Please sign in to comment.