Skip to content

Commit

Permalink
Fixed grouping by tags for operation list. (#754)
Browse files Browse the repository at this point in the history
  • Loading branch information
azaslonov authored Jul 14, 2020
1 parent 748fbb2 commit 708bcdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/apiService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export class ApiService {
const take = searchQuery && searchQuery.take || Constants.defaultPageSize;

let query = `apis/${apiId}/operationsByTags?includeNotTaggedOperations=true&$top=${take}&$skip=${skip}`;
const odataFilterEntries = [`isCurrent eq true`];
const odataFilterEntries = [];

if (searchQuery) {
if (searchQuery.tags && searchQuery.tags.length > 0) {
Expand Down

0 comments on commit 708bcdf

Please sign in to comment.