File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ export default {
130130 observer .observe (document .querySelector (' #invisibleFooter' ));
131131 },
132132 deactivated () {
133- if (! this .$route .path .startsWith (' /users' )) {
133+ if (! this .$route .path .startsWith (' /users' ) && ! this . $route . path . startsWith ( ' /accounts/signout ' ) ) {
134134 this .browseAgain ();
135135 this .fetchUsers ();
136136 this .$el .scrollTop = 0 ;
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ export default {
180180 });
181181 },
182182 deactivated () {
183- if (! this .$route .path .startsWith (' /users' )) {
183+ if (! this .$route .path .startsWith (' /users' ) && ! this . $route . path . startsWith ( ' /accounts/signout ' ) ) {
184184 this .browseAgain ();
185185 this .fetchUsers (' People I viewed' );
186186 this .$el .scrollTop = 0 ;
Original file line number Diff line number Diff line change @@ -235,7 +235,7 @@ export default {
235235 observer .observe (document .querySelector (' #invisibleFooterSearch' ));
236236 },
237237 deactivated () {
238- if (! this .$route .path .startsWith (' /users' )) {
238+ if (! this .$route .path .startsWith (' /users' ) && ! this . $route . path . startsWith ( ' /accounts/signout ' ) ) {
239239 this .searchAgain ();
240240 this .fetchUsersOverfiew ();
241241 this .$el .scrollTop = 0 ;
You can’t perform that action at this time.
0 commit comments