Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Fix issue where only first 100 services were shown in service marketplace #3161

Merged
merged 3 commits into from
Dec 3, 2018
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 src/frontend/app/store/actions/pagination.actions.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { Action } from '@ngrx/store';

import { BasePaginatedAction, PaginationClientFilter, PaginationParam } from '../types/pagination.types';
import { PaginationClientFilter, PaginationParam, BasePaginatedAction } from '../types/pagination.types';

export const CLEAR_PAGINATION_OF_TYPE = '[Pagination] Clear all pages of type';
export const CLEAR_PAGINATION_OF_ENTITY = '[Pagination] Clear pagination of entity';
Expand Down
1 change: 1 addition & 0 deletions src/frontend/app/store/actions/service.actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export class GetAllServices extends CFStartAction implements PaginatedAction, En
'order-direction': 'desc',
'order-direction-field': 'label',
};
flattenPagination = true;
}
export class GetService extends CFStartAction implements EntityInlineParentAction {
constructor(
Expand Down