We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
this
execActionByIRI
1 parent d8a75c9 commit f9f8bb9Copy full SHA for f9f8bb9
src/LinkedRenderStore.ts
@@ -82,7 +82,7 @@ export class LinkedRenderStore<T> {
82
this.schema = opts.schema || new Schema(this.store);
83
this.mapping = opts.mapping || new ComponentStore(this.schema);
84
// tslint:disable-next-line typedef
85
- const actionMiddleware: MiddlewareFn<T> = () => () => this.execActionByIRI;
+ const actionMiddleware: MiddlewareFn<T> = () => () => this.execActionByIRI.bind(this);
86
this.middleware = this.applyMiddleware(...(opts.middleware || []), actionMiddleware);
87
}
88
0 commit comments