Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion app/views/shipit/commits/_commit.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
<%= render 'shipit/shared/author', author: commit.author %>
<% end %>

<%= render 'shipit/statuses/status', status: commit.status %>
<% if commit.status.group? %>
<%= render 'shipit/statuses/group', group: commit.status %>
<% else %>
<%= render 'shipit/statuses/status', status: commit.status %>
<% end %>
Comment on lines +7 to +11
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure if we still need to_partial_path on Shipit::Status::Group|Missing|Unknown since we are explicitly calling out the partials now? (Not blocking)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I may opt to follow up with a change to address this.

<div class="commit-details">
<span class="commit-title"><%= render_commit_message_with_link commit %></span>
<p class="commit-meta">
Expand Down