Skip to content

Commit 5199901

Browse files
committed
fix: forward productSlug in Angular changelog service buildParams
Signed-off-by: Asitha de Silva <asithade@gmail.com>
1 parent 27ad013 commit 5199901

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

apps/lfx-changelog/src/app/shared/services/changelog.service.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ export class ChangelogService {
7777
private buildParams(params?: ChangelogQueryParams): HttpParams {
7878
let httpParams = new HttpParams();
7979
if (params?.productId) httpParams = httpParams.set('productId', params.productId);
80+
if (params?.productSlug) httpParams = httpParams.set('productSlug', params.productSlug);
8081
if (params?.status) httpParams = httpParams.set('status', params.status);
8182
if (params?.page) httpParams = httpParams.set('page', params.page.toString());
8283
if (params?.limit) httpParams = httpParams.set('limit', params.limit.toString());

0 commit comments

Comments
 (0)