Skip to content

Commit

Permalink
fix(iosApp): better support of markdown in talk description.
Browse files Browse the repository at this point in the history
  • Loading branch information
GerardPaligot committed May 11, 2024
1 parent 75c3440 commit aa98d03
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion iosApp/iosApp/components/talks/TalkSectionView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ struct TalkSectionView: View {
}
}
.accessibilityElement(children: .combine)
Text(talkUi.abstract)
Text(.init(talkUi.abstract))
.foregroundColor(color.opacity(0.74))
.padding(.top, 8)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ struct ScheduleEventSessionDetail: View {
}
.accessibilityElement(children: .combine)
if (session.description_ != nil) {
Text(session.description_!)
Text(.init(session.description_!))
.foregroundColor(color.opacity(0.74))
.padding(.top, 8)
}
Expand Down

0 comments on commit aa98d03

Please sign in to comment.