Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
franzzua committed Feb 26, 2024
2 parents 8d41ba8 + b0c790d commit bd73083
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cmmn/cell",
"version": "2.2.1",
"version": "2.2.2",
"description": "pull-based state flow",
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion cell/src/decorators.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const cell: CellDecorator = ((options: ICellOptions<any>, prop?, descr?,
},
set(value) {
const cell = getCell(this, prop, descr, options);
descr.set?.call(this, value);
descr?.set?.call(this, value);
cell.set(value);
},
configurable: true
Expand Down

0 comments on commit bd73083

Please sign in to comment.