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/).
4
4
# Upcoming
5
5
6
6
### 🐞 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 )
8
9
9
10
# [ 4.60.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.60.0 )
10
11
_ July 19, 2024_
Original file line number Diff line number Diff line change @@ -823,6 +823,7 @@ extension ViewFactory {
823
823
onTap: onTap,
824
824
onLongPress: onLongPress
825
825
)
826
+ . id ( message. reactionScoresId)
826
827
}
827
828
828
829
public func makeMessageReactionView(
Original file line number Diff line number Diff line change @@ -861,9 +861,10 @@ class ViewFactory_Tests: StreamChatTestCase {
861
861
onTap: { } ,
862
862
onLongPress: { }
863
863
)
864
-
864
+ let name = String ( describing: type ( of: view) )
865
+
865
866
// Then
866
- XCTAssert ( view is BottomReactionsView )
867
+ XCTAssert ( name . contains ( " BottomReactionsView " ) )
867
868
}
868
869
869
870
func test_viewFactory_makeCustomAttachmentQuotedView( ) {
You can’t perform that action at this time.
0 commit comments