@afeefa/vue-app 0.0.218 → 0.0.220

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.218
1
+ 0.0.220
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@afeefa/vue-app",
3
- "version": "0.0.218",
3
+ "version": "0.0.220",
4
4
  "description": "",
5
5
  "author": "Afeefa Kollektiv <kollektiv@afeefa.de>",
6
6
  "license": "MIT",
@@ -18,12 +18,14 @@ export class SaveAction extends ApiAction {
18
18
  return this.execute()
19
19
  }
20
20
 
21
- async afterRequest () {
22
- await super.afterRequest()
21
+ processResult (result) {
22
+ const response = super.processResult(result)
23
23
 
24
24
  if (this._showSuccess) {
25
25
  this.alert('Die Daten wurden gespeichert.')
26
26
  }
27
+
28
+ return response
27
29
  }
28
30
 
29
31
  processError (result) {
@@ -97,6 +97,11 @@ export class ListViewMixin extends Vue {
97
97
  this.meta_ = this.meta
98
98
  }
99
99
 
100
+ @Watch('listAction')
101
+ listActionChanged () {
102
+ this.init()
103
+ }
104
+
100
105
  _filtersInitialized () {
101
106
  }
102
107