forked from profectus/Profectus
Fix actions not being constructible
This commit is contained in:
parent
8dd2cbe466
commit
dbdcf19b6d
1 changed files with 3 additions and 2 deletions
|
@ -244,8 +244,9 @@ export function createAction<T extends ActionOptions>(
|
||||||
decorator.postConstruct?.(action);
|
decorator.postConstruct?.(action);
|
||||||
}
|
}
|
||||||
|
|
||||||
const decoratedProps = decorators.reduce((current, next) =>
|
const decoratedProps = decorators.reduce(
|
||||||
Object.assign(current, next.getGatheredProps?.(action))
|
(current, next) => Object.assign(current, next.getGatheredProps?.(action)),
|
||||||
|
{}
|
||||||
);
|
);
|
||||||
action[GatherProps] = function (this: GenericAction) {
|
action[GatherProps] = function (this: GenericAction) {
|
||||||
const {
|
const {
|
||||||
|
|
Loading…
Reference in a new issue