1
0
Fork 0
mirror of synced 2024-06-29 03:20:34 +12:00

Merge pull request #6184 from actus-ag/feature/optiontype-sort-order

feat: toggle for sort order in options type field
This commit is contained in:
Martin McKeaveney 2022-06-13 10:44:21 +01:00 committed by GitHub
commit 76d6b5af52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 1 deletions

View file

@ -2448,6 +2448,12 @@
"value": "select"
}
},
{
"type": "boolean",
"label": "Sort in alphabetical order",
"key": "sort",
"defaultValue": true
},
{
"type": "boolean",
"label": "Disabled",

View file

@ -17,6 +17,7 @@
export let autocomplete = false
export let direction = "vertical"
export let onChange
export let sort = true
let fieldState
let fieldApi
@ -64,7 +65,7 @@
getOptionLabel={flatOptions ? x => x : x => x.label}
getOptionValue={flatOptions ? x => x : x => x.value}
{autocomplete}
sort={true}
{sort}
/>
{:else if optionsType === "radio"}
<CoreRadioGroup