Closed
Description
If I am in a certain stay, such as x.y
if I attempt to transition into the same state I am currently in, possibly with updated state params, the transition does not fire.
//in x.y
$state.go('x.y', { someParam: 'newvalue'}); //nothing happens
This occurs if reloadOnSearch
is true (it should be by default anyways) and also if you set {reload: true}
//in x.y
$state.go('x.y', { someParam: 'newvalue'}, { reload: true}); //also nope
This occurs in 0.2.14
, but not 0.2.13