We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d5ee1d commit 88fc979Copy full SHA for 88fc979
WireMessaging/Sources/WireMessagingUI/WireCells/Components/Files/FilesInfoView.swift
@@ -153,9 +153,11 @@ struct FilesInfoView: View {
153
Strings.RecycleBin.NoData.learnMore
154
}
155
156
- return Link(linkTitle, destination: scope.learnMoreURL)
157
- .foregroundColor(SemanticColors.Label.baseSecondaryText.color)
158
- .underline()
+ return Link(destination: scope.learnMoreURL) {
+ Text(linkTitle)
+ .foregroundColor(SemanticColors.Label.baseSecondaryText.color)
159
+ .underline()
160
+ }
161
162
163
private var reloadButton: some View {
0 commit comments