mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +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
15
app/react/components/datatables/extend-options/withMeta.ts
Normal file
15
app/react/components/datatables/extend-options/withMeta.ts
Normal file
|
@ -0,0 +1,15 @@
|
|||
import { TableOptions } from '@tanstack/react-table';
|
||||
|
||||
import { DefaultType } from '../types';
|
||||
|
||||
export function withMeta<D extends DefaultType>(meta: Record<string, unknown>) {
|
||||
return function extendOptions(options: TableOptions<D>) {
|
||||
return {
|
||||
...options,
|
||||
meta: {
|
||||
...options.meta,
|
||||
...meta,
|
||||
},
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue