File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ Unreleased]
4+ ### Bugfixes
5+ * Remove final & operator so all nils -> 0.0 #618
6+
37## [ 0.2.7] - 2020-07-30
48### Enhancements
59* Display inexhaustible icon on Contributions, Matches, Respond #601
Original file line number Diff line number Diff line change @@ -53,7 +53,9 @@ def name
5353 end
5454
5555 def name_and_match_history
56- "(#{ type } -#{ all_tags_to_s . upcase } #{ " ***INEXHAUSTIBLE*** " if inexhaustible? } ) #{ person . match_history } . (#{ person . name } #{ " --- $" + person . monthly_donation_amount_max . to_s + "/mo left" if person . monthly_donation_amount_max &.to_f > 0.0 } )"
56+ "(#{ type } -#{ all_tags_to_s . upcase } #{ " ***INEXHAUSTIBLE*** " if inexhaustible? } ) #{
57+ person . match_history } . (#{ person . name } #{ " --- $" +
58+ person . monthly_donation_amount_max . to_s + "/mo left" if person &.monthly_donation_amount_max . to_f > 0.0 } )"
5759 end
5860
5961 def status
You can’t perform that action at this time.
0 commit comments