We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7d555d commit 3448612Copy full SHA for 3448612
app/views/shipit/commits/_commit.html.erb
@@ -4,7 +4,11 @@
4
<%= render 'shipit/shared/author', author: commit.author %>
5
<% end %>
6
7
- <%= render 'shipit/statuses/status', status: commit.status %>
+ <% if commit.status.group? %>
8
+ <%= render 'shipit/statuses/group', group: commit.status %>
9
+ <% else %>
10
+ <%= render 'shipit/statuses/status', status: commit.status %>
11
+ <% end %>
12
<div class="commit-details">
13
<span class="commit-title"><%= render_commit_message_with_link commit %></span>
14
<p class="commit-meta">
0 commit comments