Skip to content

Commit

Permalink
Merge pull request #1286 from internetee/1276-current-bid-info-blind-…
Browse files Browse the repository at this point in the history
…auciton

changed price render for blind auction without users bid
  • Loading branch information
vohmar authored Jul 4, 2024
2 parents da60417 + efb92e7 commit ee15a65
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 ee15a65

Please sign in to comment.