Browse Source

Add line break

pull/7302/head
Thomas Kaul 2 days ago
parent
commit
186d7af9a8
  1. 1
      apps/client/src/app/components/user-account-settings/user-account-settings.component.ts

1
apps/client/src/app/components/user-account-settings/user-account-settings.component.ts

@ -151,6 +151,7 @@ export class GfUserAccountSettingsComponent implements OnInit {
if (this.user.settings.locale) { if (this.user.settings.locale) {
this.locales.push(this.user.settings.locale); this.locales.push(this.user.settings.locale);
} }
this.locales = Array.from(new Set(this.locales)).sort(); this.locales = Array.from(new Set(this.locales)).sort();
this.changeDetectorRef.markForCheck(); this.changeDetectorRef.markForCheck();

Loading…
Cancel
Save