@osovitny/anatoly 3.19.40 → 3.19.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -7315,7 +7315,7 @@ class LanguageDropdownlist extends EditComponentBase {
7315
7315
  ngOnInit() {
7316
7316
  this.appContext.jsonFilesLoaded$.subscribe({
7317
7317
  next: () => {
7318
- this.items = this.appContext.languages?.slice().sort();
7318
+ this.items = this.appContext.languages?.slice().sort((a, b) => a.name.toLowerCase().localeCompare(b.name.toLowerCase()));
7319
7319
  }
7320
7320
  });
7321
7321
  }