quickwit icon indicating copy to clipboard operation
quickwit copied to clipboard

Issue with UI and timestamp

Open atkawa7 opened this issue 10 months ago • 1 comments

Create a index with a timestamp field with nanosecond precision. The field overflows into the next column

Image

Removing css helps

width: 90px; 
Image

atkawa7 avatar Feb 09 '25 19:02 atkawa7

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>

atkawa7 avatar Feb 10 '25 07:02 atkawa7