mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-20 06:51:10 +08:00

* feat: add dynamic table based on query * fix: group by repeating * fix: change view when groupBy exist in the list * feat: add list view for log explorer * fix: query builder updating * fix: table scroll * fix: filters for explorer page (#2959) --------- Co-authored-by: Prashant Shahi <prashant@signoz.io>
7 lines
144 B
TypeScript
7 lines
144 B
TypeScript
import { QueryDataV3 } from 'types/api/widgets/getQuery';
|
|
|
|
export type LogsExplorerTableProps = {
|
|
data: QueryDataV3[];
|
|
isLoading: boolean;
|
|
};
|