Преглед на файлове

Redirect to home when switching orgs

utkarshcmu преди 9 години
родител
ревизия
f6cbbe1e64
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      public/app/core/components/sidemenu/sidemenu.ts

+ 1 - 0
public/app/core/components/sidemenu/sidemenu.ts

@@ -87,6 +87,7 @@ export class SideMenuCtrl {
  switchOrg(orgId) {
    this.backendSrv.post('/api/user/using/' + orgId).then(() => {
      window.location.href = window.location.href;
+     this.$location.path('/');
    });
  };
 }