Skip to content

Commit

Permalink
allow unpublished queries to be used as alerts (re #97
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Short committed Jul 25, 2018
1 parent d4813e4 commit cf7f8cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/app/pages/alert/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function AlertCtrl($routeParams, $location, $sce, toastr, currentUser, Query, Ev
return;
}

Query.search({ q: term }, (results) => {
Query.search({ q: term, include_drafts: true }, (results) => {
this.queries = results;
});
};
Expand Down

0 comments on commit cf7f8cf

Please sign in to comment.