@afeefa/vue-app 0.0.266 → 0.0.267
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.
|
1
|
+
0.0.267
|
package/package.json
CHANGED
@@ -98,7 +98,16 @@ export class ListViewMixin extends Vue {
|
|
98
98
|
}
|
99
99
|
|
100
100
|
@Watch('listAction')
|
101
|
-
listActionChanged () {
|
101
|
+
listActionChanged (newAction, oldAction) {
|
102
|
+
// es gibt den fall, dass diese liste in einer detailansicht steckt
|
103
|
+
// und dort der owner nach dem speichern aktualisiert wird, dann ändert sich auch
|
104
|
+
// die listAction, aber die filter sind alle gleich. dann wollen wir nicht
|
105
|
+
// neu laden
|
106
|
+
newAction = JSON.stringify(newAction.getApiRequest().serialize())
|
107
|
+
oldAction = JSON.stringify(oldAction.getApiRequest().serialize())
|
108
|
+
if (newAction === oldAction) {
|
109
|
+
return
|
110
|
+
}
|
102
111
|
this.init()
|
103
112
|
}
|
104
113
|
|