Remove the end date adjustment at admin budget phase table

This commit is contained in:
Bertocq
2018-01-23 02:13:11 +01:00
parent 599442440b
commit b6cc816d0f

View File

@@ -34,7 +34,7 @@
<% if phase.starts_at.present? || phase.ends_at.present? %>
<%= l(phase.starts_at.to_date) if phase.starts_at.present? %>
-
<%= l(phase.ends_at.to_date - 1.day) if phase.ends_at.present? %>
<%= l(phase.ends_at.to_date) if phase.ends_at.present? %>
<% else %>
<em><%= t("admin.budgets.edit.blank_dates") %></em>
<% end %>