1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00

bugfix: links not respecting appRootPath

This commit is contained in:
Michael Shanks 2020-06-03 12:29:42 +01:00
parent 6ca887e79e
commit 0c2d7a7c66
3 changed files with 3 additions and 3 deletions

View file

@ -38,6 +38,7 @@ router
ctx.config = {
latestPackagesFolder: budibaseAppsDir(),
jwtSecret: env.JWT_SECRET,
useAppRootPath: true,
}
ctx.isDev = env.NODE_ENV !== "production" && env.NODE_ENV !== "jest"
await next()

View file

@ -28,8 +28,7 @@ module.exports = async (config, appId, pageName, pkg) => {
await savePageJson(appPath, pageName, pkg)
}
const rootPath = (config, appname) =>
config.useAppRootPath ? `/${appname}` : ""
const rootPath = (config, appId) => (config.useAppRootPath ? `/${appId}` : "")
const copyClientLib = async (appPath, pageName) => {
const sourcepath = require.resolve("@budibase/client")

View file

@ -13,7 +13,7 @@
$: target = openInNewTab ? "_blank" : "_self"
</script>
<a href={url} bind:this={anchorElement} {target}>{text}</a>
<a href={_bb.relativeUrl(url)} bind:this={anchorElement} {target}>{text}</a>
<style>
.textDecoration {