From a8aef1bde6a5798afeeff204e3cb830ea5cd1f41 Mon Sep 17 00:00:00 2001 From: Sam Rijs Date: Sun, 28 Jan 2018 20:12:33 +1100 Subject: [PATCH] introduce spacing between qualifier and name in headline --- src/server/views/status_html.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/views/status_html.rs b/src/server/views/status_html.rs index b30ca89..6f5fed0 100644 --- a/src/server/views/status_html.rs +++ b/src/server/views/status_html.rs @@ -89,7 +89,7 @@ pub fn status_html(analysis_outcome: AnalyzeDependenciesOutcome, repo_path: Repo h1 class="title is-1" { a href=(format!("{}/{}/{}", repo_path.site.to_base_uri(), repo_path.qual.as_ref(), repo_path.name.as_ref())) { i class="fa fa-github" "" - (format!(" {}/{}", repo_path.qual.as_ref(), repo_path.name.as_ref())) + (format!(" {} / {}", repo_path.qual.as_ref(), repo_path.name.as_ref())) } }