Logs in Explore: Persist table sorting in the url (#114060)

This commit is contained in:
Liza Detrick
2025-12-03 08:03:36 -08:00
committed by GitHub
parent 157cab192c
commit c847f1fa4b
5 changed files with 119 additions and 6 deletions
@@ -85,6 +85,9 @@ export interface ExploreLogsPanelState {
refId?: string;
displayedFields?: string[];
sortOrder?: LogsSortOrder;
// Column sort state for table view. Persists between query changes.
tableSortBy?: string;
tableSortDir?: 'asc' | 'desc';
}
export interface SplitOpenOptions<T extends AnyQuery = AnyQuery> {