Rajat Dabade fc49833c9f
[Feat]: Dynamic columns in tables (#3809)
* feat: added dropdown in alert list table

* refactor: done with combining actions

* feat: done with label and dynamic table

* feat: dynamic column in table

* chore: show all label on hover

* refactor: create to created timestamp - highlighted action

* refactor: storing the column data in localstorage
2023-10-27 21:09:23 +05:30

12 lines
226 B
TypeScript

export const TableDataSource = {
Alert: 'alert',
Dashboard: 'dashboard',
} as const;
export const DynamicColumnsKey = {
CreatedAt: 'createdAt',
CreatedBy: 'createdBy',
UpdatedAt: 'updatedAt',
UpdatedBy: 'updatedBy',
};