Browse Source

Fix text getting truncated next to link previews

Changelog-Fixed: Fix text getting truncated next to link previews
translations_damus-localizations-en-us-xcloc-localized-contents-en-us-xliff--master_es_419
William Casarin 2 years ago
parent
commit
bcb40a6ec7
  1. 1
      damus/Views/NoteContentView.swift

1
damus/Views/NoteContentView.swift

@ -74,6 +74,7 @@ struct NoteContentView: View {
return VStack(alignment: .leading) {
Text(Markdown.parse(content: artifacts.content))
.font(eventviewsize_to_font(size))
.fixedSize(horizontal: false, vertical: true)
if show_images && artifacts.images.count > 0 {
ImageCarousel(urls: artifacts.images)

Loading…
Cancel
Save