diff --git a/src/openlmis-logout/openlmis-logout.controller.js b/src/openlmis-logout/openlmis-logout.controller.js index e20f84f7..eb956ff8 100644 --- a/src/openlmis-logout/openlmis-logout.controller.js +++ b/src/openlmis-logout/openlmis-logout.controller.js @@ -57,6 +57,11 @@ function doLogout() { loginService.logout() + .then(function() { + var currentLocale = localStorage.getItem('openlmis.current_locale'); + localStorage.clear(); + localStorage.setItem('openlmis.current_locale', currentLocale); + }) .then(function() { $rootScope.$emit('openlmis-auth.logout'); $state.go('auth.login');