Skip to content

Commit

Permalink
fix(config): fix user language (#3574)
Browse files Browse the repository at this point in the history
ref: MANAGER-5594

Signed-off-by: Cyrille Bourgois <[email protected]>
  • Loading branch information
Cyrille Bourgois authored and marie-j committed Sep 4, 2020
1 parent b02aac2 commit c43463e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default class EnvironmentService {
}

getUserLanguage() {
return this.userLocale.split('-')[0];
return this.userLocale.split('_')[0];
}

setVersion(version) {
Expand Down

0 comments on commit c43463e

Please sign in to comment.