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

Commit

Permalink
fix: site theme tool comp restored
Browse files Browse the repository at this point in the history
  • Loading branch information
villetakanen committed Dec 9, 2021
1 parent 4257fc3 commit e3671bf
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/components/site/settings/SiteThemeTool.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<template>
<Column class="SiteThemeTool">
<h1>{{ $t('site.themetool.title') }}</h1>
<h1 class="title">
{{ $t('site.themetool.title') }}
</h1>
</Column>
</template>

Expand Down
5 changes: 4 additions & 1 deletion src/views/site/SiteMetaView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
class="dashBoardLayout"
>
<SiteMeta class="inDashboardBox" />
<SiteThemeTool />
<SiteCategoriesCard class="inDashboardBox" />
</main>
<Loader v-else />
Expand All @@ -23,14 +24,16 @@ import SiteMeta from '@/components/site/SiteMeta.vue'
import SiteToolbar from '@/components/site/header/SiteToolbar.vue'
import SiteCategoriesCard from '@/components/site/SiteCategoriesCard.vue'
import { useAuth } from '@/state/authz'
import SiteThemeTool from '@/components/site/settings/SiteThemeTool.vue'
export default defineComponent({
name: 'WikiIndex',
components: {
Loader,
SiteMeta,
SiteToolbar,
SiteCategoriesCard
SiteCategoriesCard,
SiteThemeTool
},
props: {
siteid: {
Expand Down

0 comments on commit e3671bf

Please sign in to comment.