MOBILE-3462 lang: Fix error when direction had wrong value
parent
22266da7a7
commit
9ad5531076
|
@ -55,7 +55,9 @@ export class CoreLangProvider {
|
||||||
|
|
||||||
translate.onLangChange.subscribe((event: any) => {
|
translate.onLangChange.subscribe((event: any) => {
|
||||||
platform.setLang(event.lang, true);
|
platform.setLang(event.lang, true);
|
||||||
platform.setDir(this.translate.instant('core.thisdirection'), true);
|
|
||||||
|
const dir = this.translate.instant('core.thisdirection');
|
||||||
|
platform.setDir(dir.indexOf('rtl') != -1 ? 'rtl' : 'ltr', true);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue