fix(ui/logs): show timestamp hint with nanosecond time

pull/5656/head
Pavel Zavora 2021-01-06 14:47:35 +01:00
parent af62b6da6b
commit c9f77f699e
1 changed files with 7 additions and 1 deletions

View File

@ -508,7 +508,13 @@ class LogsTable extends Component<Props, State> {
return (
<div
className="logs-viewer--cell"
title={`Jump to '${value}'`}
title={
typeof value === 'string' && value.length > 9
? `Jump to '${formattedValue}.${value.substring(
value.length - 9
)}' (${value})`
: `Jump to '${value}'`
}
key={key}
style={style}
data-index={rowIndex}