culture service workaround

This commit is contained in:
Diamantis Tziotzios 2021-05-19 14:22:03 +03:00
parent 8a5f9d3536
commit 5483847754
1 changed files with 1 additions and 1 deletions

View File

@ -81,6 +81,6 @@ export class CultureService {
} }
getCurrentCulture(): CultureInfo { getCurrentCulture(): CultureInfo {
return this.currentCulture; return this.currentCulture || this.cultureValues.get('en-US'); //TODO: fix this
} }
} }