From 8794adde693021a716080d47fe346bdbc7b32f33 Mon Sep 17 00:00:00 2001 From: Blade Barringer Date: Wed, 3 Dec 2014 08:01:23 -0600 Subject: [PATCH] Updated function to go to correct options pane. Closes # 4319 --- public/js/controllers/groupsCtrl.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/js/controllers/groupsCtrl.js b/public/js/controllers/groupsCtrl.js index 42ec3a421e..69c09aa938 100644 --- a/public/js/controllers/groupsCtrl.js +++ b/public/js/controllers/groupsCtrl.js @@ -38,7 +38,7 @@ habitrpg.controller("GroupsCtrl", ['$scope', '$rootScope', 'Shared', 'Groups', ' $scope.clickMember = function(uid, forceShow) { if (User.user._id == uid && !forceShow) { if ($state.is('tasks')) { - $state.go('options'); + $state.go('options.profile.avatar'); } else { $state.go('tasks'); }