fix: handle link reformatting from home path (#1169)
This commit is contained in:
parent
400c0d3998
commit
8ba78dd771
@ -60,7 +60,7 @@ module.exports = {
|
|||||||
if (WIKI.config.lang.namespacing) {
|
if (WIKI.config.lang.namespacing) {
|
||||||
// -> Reformat paths
|
// -> Reformat paths
|
||||||
if (href.indexOf('/') !== 0) {
|
if (href.indexOf('/') !== 0) {
|
||||||
href = `/${this.page.localeCode}/${this.page.path}/${href}`
|
href = (this.page.path === 'home') ? `/${this.page.localeCode}/${href}` : `/${this.page.localeCode}/${this.page.path}/${href}`
|
||||||
} else if (href.charAt(3) !== '/') {
|
} else if (href.charAt(3) !== '/') {
|
||||||
href = `/${this.page.localeCode}${href}`
|
href = `/${this.page.localeCode}${href}`
|
||||||
}
|
}
|
||||||
@ -74,7 +74,7 @@ module.exports = {
|
|||||||
} else {
|
} else {
|
||||||
// -> Reformat paths
|
// -> Reformat paths
|
||||||
if (href.indexOf('/') !== 0) {
|
if (href.indexOf('/') !== 0) {
|
||||||
href = `/${this.page.path}/${href}`
|
href = (this.page.path === 'home') ? `/${href}` : `/${this.page.path}/${href}`
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user