mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-07-25 12:24:24 +08:00

* 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
12 lines
226 B
TypeScript
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',
|
|
};
|