Skip to content
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 apis/client/view/view.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Template.viewApiBackend.helpers({

// Fetch all backlog items for a specific API Backend
// Sort by priority value and created date
const backlogItems = ApiBacklogItems.find({ apiId }, { sort: { priority: -1, createdAt: -1 } }).fetch();
const backlogItems = ApiBacklogItems.find({ apiBackendId: apiId }, { sort: { priority: -1, createdAt: -1 } }).fetch();

return backlogItems;
},
Expand Down
2 changes: 0 additions & 2 deletions backlog/client/backlog.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { Apis } from '/apis/collection';

Template.apiBacklog.events({
'click #add-backlog-item': function () {
// Show Add API Backlog Item modal
Expand Down