Skip to content

Commit

Permalink
test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoperra committed Jan 6, 2025
1 parent 2c1725b commit 79569bd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/angular-table/src/proxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ export function proxifyTable<T>(
*/
if (
property.startsWith('get') &&
!property.endsWith('Handler') &&
!property.endsWith('Model')
!property.endsWith('Handler')
// Non-reactive properties like `getCoreRowModel` prevent to use latest row `getContext` in some cases
// && !property.endsWith('Model')
) {
const maybeFn = table[property] as Function | never
if (typeof maybeFn === 'function') {
Expand Down

0 comments on commit 79569bd

Please sign in to comment.