We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f16baa4 commit 7ce03deCopy full SHA for 7ce03de
src/model/column/column.ts
@@ -24,7 +24,12 @@ export function Column(...args: any[]): Function | void {
24
}
25
26
return (target: any, propertyName: string, propertyDescriptor?: PropertyDescriptor) => {
27
- annotate(target, propertyName, propertyDescriptor, args[0]);
+ annotate(
28
+ target,
29
+ propertyName,
30
+ propertyDescriptor ?? Object.getOwnPropertyDescriptor(target, propertyName),
31
+ args[0]
32
+ );
33
};
34
35
0 commit comments