We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ae7495 commit 61ba6e8Copy full SHA for 61ba6e8
quickwit/quickwit-ui/src/components/SearchResult/Row.tsx
@@ -83,7 +83,14 @@ function DisplayTimestampValue(row: RawDoc, timestampField: Field | null) {
83
}
84
return (
85
<TableCell sx={{ verticalAlign: "top", padding: "4px" }}>
86
- <Box sx={{ maxHeight: "115px", width: "90px", display: "inline-block" }}>
+ <Box
87
+ sx={{
88
+ maxHeight: "115px",
89
+ width: "90px",
90
+ display: "inline-block",
91
+ wordBreak: "break-word",
92
+ }}
93
+ >
94
{formatDateTime(
95
field_value,
96
timestampField.field_mapping.output_format,
0 commit comments