Skip to content

Commit

Permalink
minor edits to resolve merge errors
Browse files Browse the repository at this point in the history
  • Loading branch information
siddheshraze committed Dec 17, 2024
1 parent 66fafb7 commit 1ff330d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/components/client/datagridcolumns.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ export const UnifiedChangelogGridColumns: GridColDef[] = standardizeGridColumns(
>
{Object.entries(jsonData).map(([key, value]) => (
<Typography key={key} level="body-sm" sx={{ lineHeight: 1.5 }}>
<strong>{key}:</strong> {typeof value === 'object' ? JSON.stringify(value) : value}
<strong>{key}:</strong> {typeof value === 'object' ? JSON.stringify(value) : String(value)}
</Typography>
))}
</Box>
Expand Down Expand Up @@ -672,7 +672,7 @@ export const UnifiedChangelogGridColumns: GridColDef[] = standardizeGridColumns(
>
{Object.entries(jsonData).map(([key, value]) => (
<Typography key={key} level="body-sm" sx={{ lineHeight: 1.5 }}>
<strong>{key}:</strong> {typeof value === 'object' ? JSON.stringify(value) : value}
<strong>{key}:</strong> {typeof value === 'object' ? JSON.stringify(value) : String(value)}
</Typography>
))}
</Box>
Expand Down

0 comments on commit 1ff330d

Please sign in to comment.