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/).
9
9
- Fix crash when opening message overlay in iPad with a TabBar [ #627 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/627 )
10
10
- Only show Leave Group option if the user has leave-channel permission [ #633 ] ( https://github.com/GetStream/stream-chat-swiftui/pull/633 )
11
11
- 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 )
12
13
13
14
# [ 4.65.0] ( https://github.com/GetStream/stream-chat-swiftui/releases/tag/4.65.0 )
14
15
_ October 18, 2024_
Original file line number Diff line number Diff line change @@ -58,6 +58,7 @@ public struct PhotoAttachmentCell: View {
58
58
@State private var compressing = false
59
59
@State private var loading = false
60
60
@State var requestId : PHContentEditingInputRequestID ?
61
+ @State var idOverlay = UUID ( )
61
62
62
63
var asset : PHAsset
63
64
var onImageTap : ( AddedAsset ) -> Void
@@ -113,6 +114,7 @@ public struct PhotoAttachmentCell: View {
113
114
)
114
115
)
115
116
}
117
+ idOverlay = UUID ( )
116
118
}
117
119
}
118
120
}
@@ -150,6 +152,7 @@ public struct PhotoAttachmentCell: View {
150
152
)
151
153
}
152
154
}
155
+ . id ( idOverlay)
153
156
)
154
157
. onAppear {
155
158
self . loading = false
You can’t perform that action at this time.
0 commit comments