-
-
Notifications
You must be signed in to change notification settings - Fork 775
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixes tooltips on bounty detail pages #4938
Conversation
Codecov Report
@@ Coverage Diff @@
## master #4938 +/- ##
=======================================
Coverage 30.63% 30.63%
=======================================
Files 216 216
Lines 17491 17491
Branches 2386 2386
=======================================
Hits 5359 5359
+ Misses 11917 11916 -1
- Partials 215 216 +1
Continue to review full report at Codecov.
|
@@ -112,7 +112,11 @@ var heads = { | |||
var callbacks = { | |||
'github_url': link_ize, | |||
'value_in_token': function(key, val, result) { | |||
return [ 'amount', token_value_to_display(val) + ' ' + result['token_name'] ]; | |||
var title = token_value_to_display(val) + ' ' + result['token_name']; | |||
var title_expand = title + ' in funding from original funder.'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@owocki I'm updating this to const just to be on the safer side + to avoid hoisting
piggybacks on #4930