Skip to content

Commit

Permalink
changed price render for blind auction without users bid
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegPhenomenon committed Jul 3, 2024
1 parent 4d46b09 commit efb92e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/auctions/_auction.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<% if auction.english? %>
<span class="initial-color current_<%= auction.currently_winning_offer&.user_id %>_user"><%= english_auction_presenter.maximum_bids %></span>
<% else %>
<%= auction.users_price %>
<%= auction.users_price.zero? ? '' : "#{auction.users_price} €" %>
<% end %>
</td>

Expand Down

0 comments on commit efb92e7

Please sign in to comment.