Skip to content

Commit

Permalink
fix type bug
Browse files Browse the repository at this point in the history
  • Loading branch information
franzzua committed Jan 29, 2024
1 parent 5402393 commit 98c1c2c
Showing 1 changed file with 1 addition and 1 deletion.
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 98c1c2c

Please sign in to comment.