File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -434,7 +434,7 @@ export class QuickwitDataSource
434
434
435
435
private makeLogContextDataRequest = ( row : LogRowModel , options ?: LogRowContextOptions ) => {
436
436
const direction = options ?. direction || LogRowContextQueryDirection . Backward ;
437
- const searchAfterNs = row . dataFrame . fields . find ( ( f ) => f . name === 'sort' ) ?. values . get ( row . rowIndex ) ?? [ row . timeEpochNs ]
437
+ const searchAfter = row . dataFrame . fields . find ( ( f ) => f . name === 'sort' ) ?. values . get ( row . rowIndex ) ?? [ row . timeEpochNs ]
438
438
439
439
const logQuery : Logs = {
440
440
type : 'logs' ,
@@ -444,7 +444,7 @@ export class QuickwitDataSource
444
444
// Sorting of results in the context query
445
445
sortDirection : direction === LogRowContextQueryDirection . Backward ? 'desc' : 'asc' ,
446
446
// Used to get the next log lines before/after the current log line using sort field of selected log line
447
- searchAfter : searchAfterNs ,
447
+ searchAfter : searchAfter ,
448
448
} ,
449
449
} ;
450
450
You can’t perform that action at this time.
0 commit comments