mirror of
https://git.mirrors.martin98.com/https://github.com/SigNoz/signoz
synced 2025-10-14 13:01:30 +08:00

* feat: add the ability to share a link to a log line * fix: update tooltip * fix: resolve comments regarding query params * fix: resolve comments * feat: add logs context * feat: add highlighting active items * fix: resolve comments * feat: fix showing log lines * fix: update logs ordering * fix: update page size and logs saving * fix: update related to comments * feat: logs context is updated --------- Co-authored-by: Palash Gupta <palashgdev@gmail.com>
10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
import { ILog } from 'types/api/logs/log';
|
|
import { IBuilderQuery } from 'types/api/queryBuilder/queryBuilderData';
|
|
|
|
export type LogsExplorerListProps = {
|
|
isLoading: boolean;
|
|
currentStagedQueryData: IBuilderQuery | null;
|
|
logs: ILog[];
|
|
onEndReached: (index: number) => void;
|
|
};
|