We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33c83eb commit 85d0746Copy full SHA for 85d0746
packages/vuepress/vuepress-theme-titanium/components/Navbar.vue
@@ -89,6 +89,7 @@ export default {
89
},
90
91
versionsDropdown () {
92
+ const themeConfig = this.$site.themeConfig
93
const currentVersion = this.$versions[0]
94
const currentLink = this.$page.path
95
const routes = this.$router.options.routes
@@ -114,7 +115,7 @@ export default {
114
115
if (version === currentVersion) {
116
item.subText = 'current'
117
} else if (version === 'next') {
- item.text = 'master'
118
+ item.text = themeConfig && themeConfig.nextVersionTitle || 'master'
119
item.subText = 'next'
120
}
121
return item
0 commit comments