Browse Source

Refactoring

pull/1195/head
Thomas 3 years ago
parent
commit
d308c0cf2b
  1. 4
      libs/common/src/lib/helper.ts

4
libs/common/src/lib/helper.ts

@ -57,8 +57,8 @@ export function getCssVariable(aCssVariable: string) {
);
}
export function getDateFnsLocale(aLocale = '') {
if (aLocale.startsWith('de')) {
export function getDateFnsLocale(aLanguageCode: string) {
if (aLanguageCode === 'de') {
return de;
}

Loading…
Cancel
Save