Skip to content

Commit

Permalink
Merge branch 'fix-post-edit' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmz committed Oct 8, 2024
2 parents 0be1ac7 + 6a1ffe6 commit c1a9556
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- The SmartTextarea component now handles the 'onPaste' event more precisely.
When the clipboard contains the text and the image in the same time, both are
pasted.
- The recipients list of a post was determined incorrectly if some of the post
groups were not on the page.

## [1.134.4] - 2024-08-26
### Changed
Expand Down
2 changes: 1 addition & 1 deletion src/components/select-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export const joinPostData = (state) => (postId) => {
const isDirectToSelf = userId === post.createdBy && subscriptionType === 'Directs';
return !isDirectToSelf ? userId : false;
})
.map((userId) => state.subscribers[userId])
.map((userId) => state.subscribers[userId] || state.users[userId])
.filter((user) => user);

// All recipient names and the post's author name.
Expand Down

0 comments on commit c1a9556

Please sign in to comment.