We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0a4e71 commit d93c560Copy full SHA for d93c560
‎WireMessaging/Sources/WireMessagingUI/WireDrive/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