|
|
@@ -218,6 +218,9 @@ const Save = (props: Props) => {
|
|
|
'x-component': 'Select',
|
|
|
'x-component-props': {
|
|
|
mode: 'multiple',
|
|
|
+ showArrow: true,
|
|
|
+ filterOption: (input: string, option: any) =>
|
|
|
+ option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0,
|
|
|
},
|
|
|
'x-reactions': ['{{useAsyncDataSource(getRole)}}'],
|
|
|
'x-decorator-props': {
|
|
|
@@ -246,6 +249,8 @@ const Save = (props: Props) => {
|
|
|
'x-component-props': {
|
|
|
mode: 'multiple',
|
|
|
showArrow: true,
|
|
|
+ filterOption: (input: string, option: any) =>
|
|
|
+ option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0,
|
|
|
},
|
|
|
'x-decorator-props': {
|
|
|
addonAfter: (
|