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
Navigate to a domain object, click Edit to enter Edit mode, then click Cancel to leave Edit mode.
Click Edit again and observe that the URL changes, but the client remains in Browse mode.
Desired behavior is that the subsequent click goes into Edit mode.
This appears to be fixed if one checks the new path before cancelling the route change, e.g.
if ($location.path().indexOf("/browse/") === 0) {
$route.current = priorRoute;
}
... in the $locationChangeSuccess listeners in BrowseController and BrowseObjectController
The text was updated successfully, but these errors were encountered:
shivamndave
pushed a commit
to shivamndave/openmctweb
that referenced
this issue
Jun 26, 2015
Navigate to a domain object, click Edit to enter Edit mode, then click Cancel to leave Edit mode.
Click Edit again and observe that the URL changes, but the client remains in Browse mode.
Desired behavior is that the subsequent click goes into Edit mode.
This appears to be fixed if one checks the new path before cancelling the route change, e.g.
... in the
$locationChangeSuccess
listeners in BrowseController and BrowseObjectControllerThe text was updated successfully, but these errors were encountered: