Skip to content

Commit 61ba6e8

Browse files
committed
[ui] Prevent the search result date to overflow
1 parent 3ae7495 commit 61ba6e8

File tree

1 file changed

+8
-1
lines changed
  • quickwit/quickwit-ui/src/components/SearchResult

1 file changed

+8
-1
lines changed

quickwit/quickwit-ui/src/components/SearchResult/Row.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,14 @@ function DisplayTimestampValue(row: RawDoc, timestampField: Field | null) {
8383
}
8484
return (
8585
<TableCell sx={{ verticalAlign: "top", padding: "4px" }}>
86-
<Box sx={{ maxHeight: "115px", width: "90px", display: "inline-block" }}>
86+
<Box
87+
sx={{
88+
maxHeight: "115px",
89+
width: "90px",
90+
display: "inline-block",
91+
wordBreak: "break-word",
92+
}}
93+
>
8794
{formatDateTime(
8895
field_value,
8996
timestampField.field_mapping.output_format,

0 commit comments

Comments
 (0)