@afeefa/vue-app 0.0.128 → 0.0.129

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.
@@ -1 +1 @@
1
- 0.0.128
1
+ 0.0.129
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.128",
3
+ "version": "0.0.129",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -94,7 +94,10 @@ export default class FormFieldSearchSelect extends Mixins(FormFieldMixin) {
94
94
  }
95
95
 
96
96
  get listAction () {
97
- return ListAction.fromRequest(this.field.getOptionsRequest())
97
+ const request = this.field
98
+ .getOptionsRequest()
99
+ .addParams(this.optionRequestParams || {})
100
+ return ListAction.fromRequest(request)
98
101
  }
99
102
 
100
103
  itemSelected (model) {