We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b451fe0 commit 478fa73Copy full SHA for 478fa73
2 files changed
Splajompy/Comments/CommentInputView.swift
@@ -51,6 +51,7 @@ struct CommentInputView: View {
51
viewModel.imageSelection = nil
52
}
53
)
54
+ .disabled(viewModel.isSubmitting)
55
56
57
.scrollIndicators(.hidden)
Splajompy/Comments/CommentsView.swift
@@ -243,7 +243,7 @@ struct CommentRow: View {
243
244
if let images = comment.images {
245
ImageGallery(images: images)
246
- .frame(maxHeight: 300)
+ .frame(maxWidth: .infinity, maxHeight: 300, alignment: .leading)
247
248
249
Text(comment.richContent)
0 commit comments