File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed
Sources/StreamChatSwiftUI
StreamChatSwiftUITests/Tests/Utils Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44# Upcoming
55
66### 🐞 Fixed
7- - Media and files attachments not showing in channel info view [ #552 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/552 )
7+ - Media and files attachments not showing in channel info view [ #554 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/554 )
8+ - Bottom reactions configuration not always updating reactions [ #557 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/557 )
89
910# [ 4.60.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.60.0 )
1011_ July 19, 2024_
Original file line number Diff line number Diff line change @@ -823,6 +823,7 @@ extension ViewFactory {
823823 onTap: onTap,
824824 onLongPress: onLongPress
825825 )
826+ . id ( message. reactionScoresId)
826827 }
827828
828829 public func makeMessageReactionView(
Original file line number Diff line number Diff line change @@ -861,9 +861,10 @@ class ViewFactory_Tests: StreamChatTestCase {
861861 onTap: { } ,
862862 onLongPress: { }
863863 )
864-
864+ let name = String ( describing: type ( of: view) )
865+
865866 // Then
866- XCTAssert ( view is BottomReactionsView )
867+ XCTAssert ( name . contains ( " BottomReactionsView " ) )
867868 }
868869
869870 func test_viewFactory_makeCustomAttachmentQuotedView( ) {
You can’t perform that action at this time.
0 commit comments