diff --git a/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsListView.swift b/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsListView.swift index 6cfd2bb0..1e15a360 100644 --- a/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsListView.swift +++ b/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsListView.swift @@ -18,7 +18,7 @@ struct ContributorsListView: View { Link(destination: URL(string: contributor.htmlURL) ?? GitHubURL.repo) { ContributorsProfileView(contributor: contributor) } - .buttonStyle(.plain) + .foregroundStyle(.primary) } } else { ProgressView() diff --git a/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift b/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift index 5641996e..b0cf6d96 100644 --- a/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift +++ b/Basic-Car-Maintenance/Shared/Settings/Views/ContributorsProfileView.swift @@ -48,11 +48,12 @@ struct ContributorsProfileView: View { VStack(alignment: .leading) { Text(contributor.login) .bold() + Text( "^[\(contributor.contributions) contributions](inflect: true)", comment: "the number of contributions by a contributor" ) - .foregroundStyle(.secondary) + .foregroundStyle(.secondary) } } }