File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Sources/StreamChatSwiftUI/ChatChannel/Composer Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
99- Fix crash when opening message overlay in iPad with a TabBar [ #627 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/627 )
1010- Only show Leave Group option if the user has leave-channel permission [ #633 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/633 )
1111- Fix Channel List stuck in Empty View State in rare conditions [ #639 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/639 )
12+ - Fix a bug with photo attachment picker indicator not displaying [ #640 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/640 )
1213
1314# [ 4.65.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.65.0 )
1415_ October 18, 2024_
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ public struct PhotoAttachmentCell: View {
5858 @State private var compressing = false
5959 @State private var loading = false
6060 @State var requestId : PHContentEditingInputRequestID ?
61+ @State var idOverlay = UUID ( )
6162
6263 var asset : PHAsset
6364 var onImageTap : ( AddedAsset ) -> Void
@@ -113,6 +114,7 @@ public struct PhotoAttachmentCell: View {
113114 )
114115 )
115116 }
117+ idOverlay = UUID ( )
116118 }
117119 }
118120 }
@@ -150,6 +152,7 @@ public struct PhotoAttachmentCell: View {
150152 )
151153 }
152154 }
155+ . id ( idOverlay)
153156 )
154157 . onAppear {
155158 self . loading = false
You can’t perform that action at this time.
0 commit comments