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