@dereekb/dbx-form 13.5.0 → 13.5.1
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.
|
@@ -3588,7 +3588,9 @@ class DbxFormSourceSelectFieldComponent extends FieldType$2 {
|
|
|
3588
3588
|
const allUniqueValues = [];
|
|
3589
3589
|
const simplifiedValuesGroups = [];
|
|
3590
3590
|
// sort to put the blank label first
|
|
3591
|
-
|
|
3591
|
+
Array.from(allGroupsReducedByLabel.entries())
|
|
3592
|
+
.sort(sortByStringFunction((x) => x[0]))
|
|
3593
|
+
.forEach(([label, groups]) => {
|
|
3592
3594
|
const values = [];
|
|
3593
3595
|
groups.forEach((group) => {
|
|
3594
3596
|
group.values.forEach((selectValue) => {
|