mirror of https://github.com/rancher/ui.git
route name is getting modified twice
there is a weird issue in ember engines that resets the route path which can cause a double render error to be thrown by ember. Easiest fix is to unbind the param and since this is only dynamic because we're building the list of links from an array there is no reason for it to be bound.
This commit is contained in:
parent
0222766237
commit
1d389ed5b8
|
|
@ -11,7 +11,7 @@
|
|||
{{#each filteredDrivers as |driver|}}
|
||||
{{#if driver.available }}
|
||||
{{#link-to
|
||||
driver.route
|
||||
(unbound driver.route)
|
||||
alt=driver.label
|
||||
classNames="col span-2 nav-box-item driver"
|
||||
href=false
|
||||
|
|
|
|||
Loading…
Reference in New Issue