@cascateer/core 2.3.12 → 2.3.14
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.
- package/package.json +1 -1
- package/src/store.ts +3 -1
package/package.json
CHANGED
package/src/store.ts
CHANGED
|
@@ -210,7 +210,9 @@ export class StoreProvider<Data> extends ExtendableStoreAdapter<
|
|
|
210
210
|
) {
|
|
211
211
|
return {
|
|
212
212
|
...event,
|
|
213
|
-
predicate: await transform(
|
|
213
|
+
predicate: await transform(
|
|
214
|
+
JSON.parse(event.data.args ?? null),
|
|
215
|
+
),
|
|
214
216
|
callback: callbacks.get(event.id),
|
|
215
217
|
};
|
|
216
218
|
}
|