Rajat Chauhan
1 month ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
4 additions and
4 deletions
-
client/components/common/page-selector.vue
-
client/themes/default/components/nav-sidebar.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: [] |
|
|
|
} |
|
|
|
] |
|
|
|
|
|
@ -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: [] |
|
|
|