mirror of
https://github.com/portainer/portainer.git
synced 2025-07-21 14:29:40 +02:00
refactor(ui/datatables): allow datatable to globally filter on object value [EE-5824] (#9955)
This commit is contained in:
parent
440f4e8dda
commit
cb7377ead6
34 changed files with 271 additions and 186 deletions
|
@ -0,0 +1,10 @@
|
|||
import { TableOptions } from '@tanstack/react-table';
|
||||
|
||||
type OptionExtender<T> = (options: TableOptions<T>) => TableOptions<T>;
|
||||
|
||||
export function mergeOptions<T>(
|
||||
...extenders: Array<OptionExtender<T>>
|
||||
): OptionExtender<T> {
|
||||
return (options: TableOptions<T>) =>
|
||||
extenders.reduce((acc, option) => option(acc), options);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue