@kaspernj/api-maker 1.0.398 → 1.0.399
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 +1 -1
- package/src/router/route.jsx +1 -1
package/package.json
CHANGED
package/src/router/route.jsx
CHANGED
|
@@ -120,7 +120,7 @@ const Route = memo(shapeComponent(class Route extends BaseComponent {
|
|
|
120
120
|
break
|
|
121
121
|
}
|
|
122
122
|
|
|
123
|
-
const routePart = this.routeParts[pathPartIndex]
|
|
123
|
+
const routePart = decodeURIComponent(this.routeParts[pathPartIndex])
|
|
124
124
|
|
|
125
125
|
if (pathPart.startsWith(":") && routePart) {
|
|
126
126
|
const paramName = pathPart.slice(1, pathPart.length)
|