Browse Source

Merge 5183284013 into 41d3ba4312

pull/5352/merge
Rajat Chauhan 1 month ago
committed by GitHub
parent
commit
b940e584a7
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions
  1. 4
      client/components/common/page-selector.vue
  2. 4
      client/themes/default/components/nav-sidebar.vue

4
client/components/common/page-selector.vue

@ -147,7 +147,7 @@ export default {
tree: [
{
id: 0,
title: '/ (root)',
title: '/ (' + siteConfig.title + ')',
children: []
}
],
@ -248,7 +248,7 @@ export default {
this.tree = [
{
id: 0,
title: '/ (root)',
title: '/ (' + siteConfig.title + ')',
children: []
}
]

4
client/themes/default/components/nav-sidebar.vue

@ -72,7 +72,7 @@ import _ from 'lodash'
import gql from 'graphql-tag'
import { get } from 'vuex-pathify'
/* global siteLangs */
/* global siteLangs, siteConfig */
export default {
props: {
@ -99,7 +99,7 @@ export default {
currentItems: [],
currentParent: {
id: 0,
title: '/ (root)'
title: '/ (' + siteConfig.title + ')'
},
parents: [],
loadedCache: []

Loading…
Cancel
Save