Skip to content

Commit

Permalink
First fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvdlinde committed Nov 29, 2024
1 parent fc43d0e commit 9fa9f71
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 9 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Create a [bug report](https://github.com/OpenCatalogi/.github/issues/new/choose)
Create a [feature request](https://github.com/OpenCatalogi/.github/issues/new/choose)
]]></description>
<version>0.6.42</version>
<version>0.6.43</version>
<licence>agpl</licence>
<author mail="[email protected]" homepage="https://www.conduction.nl/">Conduction</author>
<author mail="[email protected]" homepage="https://acato.nl/">Acato</author>
Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions src/navigation/MainMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ import { navigationStore, catalogiStore, publicationStore } from '../store/store
</NcAppNavigationItem>
<NcAppNavigationItem :active="navigationStore.selected === 'themes'" name="Thema's" @click="navigationStore.setSelected('themes')">
<template #icon>
<Web :size="20" />
<ShapeOutline :size="20" />
</template>
</NcAppNavigationItem>
<NcAppNavigationItem :active="navigationStore.selected === 'pages'" name="Page's" @click="navigationStore.setSelected('pages')">
<template #icon>
<ShapeOutline :size="20" />
<Web :size="20" />
</template>
</NcAppNavigationItem>
<NcAppNavigationItem :active="navigationStore.selected === 'directory'" name="Directory" @click="navigationStore.setSelected('directory')">
Expand Down
2 changes: 2 additions & 0 deletions src/views/pages/PageDetail.vue
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ import Delete from 'vue-material-design-icons/Delete.vue'
import DotsHorizontal from 'vue-material-design-icons/DotsHorizontal.vue'
import HelpCircleOutline from 'vue-material-design-icons/HelpCircleOutline.vue'
import Pencil from 'vue-material-design-icons/Pencil.vue'
import Web from 'vue-material-design-icons/Web.vue'
/**
* Component for displaying and managing page details
Expand All @@ -97,6 +98,7 @@ export default {
Delete,
ContentCopy,
HelpCircleOutline,
Web,
},
props: {
pageItem: {
Expand Down
6 changes: 3 additions & 3 deletions src/views/pages/PageIndex.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import { navigationStore, searchStore, pageStore } from '../../store/store.js'
name="Geen pagina"
description="Nog geen pagina geselecteerd">
<template #icon>
<ShapeOutline />
<Web />
</template>
<template #action>
<NcButton type="primary" @click="navigationStore.setModal('pageAdd')">
Expand All @@ -30,7 +30,7 @@ import { navigationStore, searchStore, pageStore } from '../../store/store.js'
import { NcAppContent, NcEmptyContent, NcButton } from '@nextcloud/vue'
import PageList from './PageList.vue'
import PageDetail from './PageDetail.vue'
import ShapeOutline from 'vue-material-design-icons/ShapeOutline.vue'
import Web from 'vue-material-design-icons/Web.vue'
export default {
name: 'PageIndex',
Expand All @@ -41,7 +41,7 @@ export default {
PageDetail,
NcButton,
// Icons
ShapeOutline,
Web,
},
data() {
return {
Expand Down
6 changes: 3 additions & 3 deletions src/views/pages/PageList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import { navigationStore, pageStore } from '../../store/store.js'
:details="page?.status"
@click="setActive(page)">
<template #icon>
<ShapeOutline :size="44" />
<Web :size="44" />
</template>
<template #subname>
{{ page?.slug }}
Expand Down Expand Up @@ -99,7 +99,7 @@ import Magnify from 'vue-material-design-icons/Magnify.vue'
import Pencil from 'vue-material-design-icons/Pencil.vue'
import Plus from 'vue-material-design-icons/Plus.vue'
import Refresh from 'vue-material-design-icons/Refresh.vue'
import ShapeOutline from 'vue-material-design-icons/ShapeOutline.vue'
import Web from 'vue-material-design-icons/Web.vue'
export default {
name: 'PageList',
Expand All @@ -115,7 +115,7 @@ export default {
Refresh,
Plus,
ContentCopy,
ShapeOutline,
Web,
Pencil,
HelpCircleOutline,
},
Expand Down

0 comments on commit 9fa9f71

Please sign in to comment.