Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue with UI and timestamp #5674

Open
atkawa7 opened this issue Feb 9, 2025 · 1 comment
Open

Issue with UI and timestamp #5674

atkawa7 opened this issue Feb 9, 2025 · 1 comment
Labels
bug Something isn't working

Comments

@atkawa7
Copy link

atkawa7 commented Feb 9, 2025

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 atkawa7 added the bug Something isn't working label Feb 9, 2025
@atkawa7
Copy link
Author

atkawa7 commented Feb 10, 2025

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>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant