Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 17 additions & 9 deletions src/components/run/RunContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,9 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
<>
<TableCell
sx={{
backgroundColor: (theme) => theme.palette.mode === 'dark' ? '#11111' : '#f8f9fa'
backgroundColor: (theme) => theme.palette.mode === 'dark' ? '#11111' : '#f8f9fa',
minWidth: '100px',
whiteSpace: 'nowrap'
}}
>
Label
Expand Down Expand Up @@ -913,7 +915,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
{shouldShowAsKeyValue ? (
columns.map((column) => (
<TableRow key={column}>
<TableCell sx={{ fontWeight: 500 }}>
<TableCell sx={{ fontWeight: 500, whiteSpace: 'nowrap' }}>
{column}
</TableCell>
<TableCell>
Expand Down Expand Up @@ -1052,7 +1054,9 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
<>
<TableCell
sx={{
backgroundColor: (theme) => theme.palette.mode === 'dark' ? '#11111' : '#f8f9fa'
backgroundColor: (theme) => theme.palette.mode === 'dark' ? '#11111' : '#f8f9fa',
minWidth: '100px',
whiteSpace: 'nowrap'
}}
>
Label
Expand Down Expand Up @@ -1083,7 +1087,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
{shouldShowAsKeyValue ? (
columns.map((column) => (
<TableRow key={column}>
<TableCell sx={{ fontWeight: 500 }}>
<TableCell sx={{ fontWeight: 500, whiteSpace: 'nowrap' }}>
{column}
</TableCell>
<TableCell>
Expand Down Expand Up @@ -1560,7 +1564,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
{crawlData[0][currentCrawlIndex].metadata &&
Object.entries(crawlData[0][currentCrawlIndex].metadata).map(([key, value]: [string, any]) => (
<TableRow key={key}>
<TableCell sx={{ fontWeight: 500, width: '200px' }}>
<TableCell sx={{ fontWeight: 500, width: '200px', whiteSpace: 'nowrap' }}>
{key}
</TableCell>
<TableCell sx={{ wordBreak: 'break-word' }}>
Expand Down Expand Up @@ -1916,7 +1920,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
{searchData[currentSearchIndex].metadata &&
Object.entries(searchData[currentSearchIndex].metadata).map(([key, value]: [string, any]) => (
<TableRow key={key}>
<TableCell sx={{ fontWeight: 500, width: '200px' }}>
<TableCell sx={{ fontWeight: 500, width: '200px', whiteSpace: 'nowrap' }}>
{key}
</TableCell>
<TableCell sx={{ wordBreak: 'break-word' }}>
Expand Down Expand Up @@ -2201,23 +2205,27 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
<TableCell
sx={{
backgroundColor: darkMode ? '#11111' : '#f8f9fa',
minWidth: '200px'
minWidth: '200px',
whiteSpace: 'nowrap'
}}
>
Title
</TableCell>
<TableCell
sx={{
backgroundColor: darkMode ? '#11111' : '#f8f9fa',
minWidth: '250px'
minWidth: '250px',
whiteSpace: 'nowrap'

}}
>
URL
</TableCell>
<TableCell
sx={{
backgroundColor: darkMode ? '#11111' : '#f8f9fa',
minWidth: '300px'
minWidth: '300px',
whiteSpace: 'nowrap'
}}
>
Description
Expand Down