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);
|
||||
}
|
||||
|
||||
const decoratedProps = decorators.reduce((current, next) =>
|
||||
Object.assign(current, next.getGatheredProps?.(action))
|
||||
const decoratedProps = decorators.reduce(
|
||||
(current, next) => Object.assign(current, next.getGatheredProps?.(action)),
|
||||
{}
|
||||
);
|
||||
action[GatherProps] = function (this: GenericAction) {
|
||||
const {
|
||||
|
|
Loading…
Reference in a new issue