Skip to content

Commit

Permalink
fix: image thumbnails not showing in chat list
Browse files Browse the repository at this point in the history
This bug was brought back again in 65bd380.
After the recent fix in 78e188c.
  • Loading branch information
WofWca committed Oct 23, 2024
1 parent 9c57874 commit 6e5aeb1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## [Unreleased][unreleased]

## Fixed
- image thumbnails not showing in chat list #4247

<a id="1_47_0"></a>

## [1.47.0] - 2024-09-22
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/src/components/chat/ChatListItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ const Message = React.memo<
<div
className='summary_thumbnail'
style={{
backgroundImage: `url("${JSON.stringify(
backgroundImage: `url(${JSON.stringify(
runtime.transformBlobURL(summaryPreviewImage)
)}")`,
)})`,
}}
/>
)}
Expand Down

0 comments on commit 6e5aeb1

Please sign in to comment.