-
-
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
feat: refactoring popover on bounty details #5135
Conversation
a69476d
to
e7b6025
Compare
Codecov Report
@@ Coverage Diff @@
## master #5135 +/- ##
==========================================
- Coverage 30.88% 30.87% -0.02%
==========================================
Files 220 220
Lines 17702 17713 +11
Branches 2439 2443 +4
==========================================
+ Hits 5468 5469 +1
- Misses 12009 12017 +8
- Partials 225 227 +2
Continue to review full report at Codecov.
|
e7b6025
to
a2e3db6
Compare
a2e3db6
to
6ddff59
Compare
I got this error twice @danlipert left a bunch of TODOS I need help with |
@thelostone-mc I think I found a way to solve the queries. |
97588b8
to
b895cf2
Compare
b895cf2
to
c571ac4
Compare
app/dashboard/views.py
Outdated
keywords = request.GET.get('keywords', '') | ||
|
||
bounties = Bounty.objects.current().prefetch_related('fulfillments', 'interested', 'interested__profile', 'feedbacks') \ | ||
.filter(interested__profile=profile, network=network,) \ |
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.
I will have to show you some efficient Python style sometime :) you don't need to resort to the \
https://www.python.org/dev/peps/pep-0008/#maximum-line-length
Description
Refers/Fixes
#5036
fix https://gitcoincore.slack.com/archives/CAXQ7PT60/p1567628057033200
Testing