quickwit
quickwit copied to clipboard
Issue with UI and timestamp
Create a index with a timestamp field with nanosecond precision. The field overflows into the next column
Removing css helps
width: 90px;
diff --git a/quickwit/quickwit-ui/src/components/SearchResult/Row.tsx b/quickwit/quickwit-ui/src/components/SearchResult/Row.tsx
index 68717787..18dcd41d 100644
--- a/quickwit/quickwit-ui/src/components/SearchResult/Row.tsx
+++ b/quickwit/quickwit-ui/src/components/SearchResult/Row.tsx
@@ -77,7 +77,7 @@ function DisplayTimestampValue(row: RawDoc, timestampField: Field | null) {
return <></>
}
return <TableCell sx={{verticalAlign: 'top', padding: '4px'}}>
- <Box sx={{ maxHeight: '115px', width: '90px', display: 'inline-block' }}>
+ <Box sx={{ maxHeight: '115px', display: 'inline-block' }}>
{formatDateTime(field_value, timestampField.field_mapping.output_format)}
</Box>
</TableCell>