You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even a simple laroute.link_to('hello'); doesn't work (laroute.js:25 Uncaught TypeError: parameters.join is not a function(…)) because it calls this.route with one argument and so the second argument (parameters) is filled with wrong default ({}) which doesn't have join method since it's expected to be an array.
The text was updated successfully, but these errors were encountered:
Even a simple
laroute.link_to('hello');
doesn't work (laroute.js:25 Uncaught TypeError: parameters.join is not a function(…)
) because it callsthis.route
with one argument and so the second argument (parameters
) is filled with wrong default ({}
) which doesn't havejoin
method since it's expected to be an array.The text was updated successfully, but these errors were encountered: