Skip to content
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

add open filter #5227

Merged
merged 2 commits into from
Sep 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/assets/v2/js/board.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ Vue.mixin({
},
fetchMatchingBounties: function() {
let vm = this;
const apiUrlbounties = `/api/v0.1/bounties/slim/?network=${network}&applicants=ALL&keywords=${vm.skills}&order_by=-web3_created&offset=0&limit=10`;
const apiUrlbounties = `/api/v0.1/bounties/slim/?network=${network}&idx_status=open&applicants=ALL&keywords=${vm.skills}&order_by=-web3_created&offset=0&limit=10`;

if (vm.matchingBounties.length) {
return;
Expand Down
2 changes: 1 addition & 1 deletion app/dashboard/templates/quickstart.html
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ <h5 class="font-weight-bolder">{{ issue_type.title }}</h5>

{% if activities|length %}
<div class="container-fluid py-5 px-lg-5 activity">
<div class="bounty-activity row py-5 col-12">
<div class="bounty-activity activity_stream row py-5 col-12">
<h3 class="subheading font-weight-semibold mt-2 mb-4">Latest Bounties Created</h3>
<div class="container infinite-container" id="activity_stream">
<div class="mb-4 col-12 text-center text-md-left">
Expand Down