@osovitny/anatoly 3.19.37 → 3.19.38
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.
|
@@ -7246,7 +7246,7 @@ class CountryDropdownlist extends EditComponentBase {
|
|
|
7246
7246
|
setValues() {
|
|
7247
7247
|
this.appContext.jsonFilesLoaded$.subscribe({
|
|
7248
7248
|
next: () => {
|
|
7249
|
-
this.items = this.appContext.countries
|
|
7249
|
+
this.items = this.appContext.countries?.reverse();
|
|
7250
7250
|
}
|
|
7251
7251
|
});
|
|
7252
7252
|
if (this.isNgModelBased) {
|
|
@@ -7659,7 +7659,7 @@ class TimezoneDropdownlist extends EditComponentBase {
|
|
|
7659
7659
|
setValues() {
|
|
7660
7660
|
this.appContext.jsonFilesLoaded$.subscribe({
|
|
7661
7661
|
next: () => {
|
|
7662
|
-
this.items = this.appContext.timezones
|
|
7662
|
+
this.items = this.appContext.timezones?.reverse();
|
|
7663
7663
|
}
|
|
7664
7664
|
});
|
|
7665
7665
|
if (this.isNgModelBased) {
|