From 10480380de938e00bcf17afcecfee3f7c624af71 Mon Sep 17 00:00:00 2001 From: Daniel Schierbeck Date: Thu, 11 Oct 2018 15:24:36 +0200 Subject: [PATCH] Point to the URL of the status' page The other URL points to the Github API endpoint. --- app/views/releases/show.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/releases/show.html.erb b/app/views/releases/show.html.erb index a5663fc75d..6c08f94f94 100644 --- a/app/views/releases/show.html.erb +++ b/app/views/releases/show.html.erb @@ -20,7 +20,7 @@

<% CommitStatus.new(@release.project, @release.commit).statuses.each do |status| %> <%= github_commit_status_icon(status.fetch(:state)) %> - <%= status[:context] %>: <%= link_to status[:description], status[:url] %>
+ <%= status[:context] %>: <%= link_to status[:description], status[:target_url] %>
<% end %>