Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: TanStack/table
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 144f0b7913e587e4cbd487dbe85caac9c6a76b17
Choose a base ref
..
head repository: TanStack/table
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed5c89c84389ae44e769b55cf802c2c99ee592c2
Choose a head ref
Showing with 0 additions and 14 deletions.
  1. +0 −14 packages/angular-table/src/flex-render.ts
14 changes: 0 additions & 14 deletions packages/angular-table/src/flex-render.ts
Original file line number Diff line number Diff line change
@@ -292,17 +292,3 @@ export class FlexRenderDirective<TProps extends NonNullable<unknown>>
return new FlexRenderComponentView(component, view)
}
}

function logFlags(place: string, flags: FlexRenderFlags, val: any) {
console.group(`${place}`, val)
const result = {} as Record<string, boolean>
for (const key in FlexRenderFlags) {
// Skip the reverse mapping of numeric values to keys in enums
if (isNaN(Number(key))) {
const flagValue = FlexRenderFlags[key as keyof typeof FlexRenderFlags]
console.log(key, !!(flags & flagValue))
}
}
console.groupEnd()
return result
}