fix(ui/logs): show timestamp hint with nanosecond time
parent
af62b6da6b
commit
c9f77f699e
|
@ -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}
|
||||
|
|
Loading…
Reference in New Issue