bfg-common 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.0.3",
4
+ "version": "1.0.4",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",
@@ -201,7 +201,7 @@ export default defineNuxtPlugin(() => {
201
201
  valueProp,
202
202
  parentProp
203
203
  )
204
- return node[valueProp] + (parentPath ? `/${parentPath}` : '')
204
+ return (parentPath ? `${parentPath}/` : '') + node[valueProp]
205
205
  }
206
206
 
207
207
  return self