Skip to content

Commit 94c7a35

Browse files
committed
Fix undefined variable
1 parent 5864531 commit 94c7a35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/helpers/makePath.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var Path = require('./Path');
88
*/
99
function makePath(to, params, query) {
1010
var path;
11-
if (Path.isAbsolute(path)) {
11+
if (Path.isAbsolute(to)) {
1212
path = Path.normalize(to);
1313
} else {
1414
var route = RouteStore.getRouteByName(to);

0 commit comments

Comments
 (0)