diff --git a/projects/common/src/fm/services/item.service.ts b/projects/common/src/fm/services/item.service.ts index c60a318..9f360fe 100644 --- a/projects/common/src/fm/services/item.service.ts +++ b/projects/common/src/fm/services/item.service.ts @@ -42,7 +42,7 @@ export class ItemService { if (parentCode) params = params.append("pc", parentCode); if (dataFilter) params = params.append("df", dataFilter); if (level) params = params.append("lvl", level.toString()); - if (indexed) params = params.append("ind", indexed); + params = params.append("ind", indexed ?? true); return this.httpClient.get(`${this.ApiEndpoint()}/api/v1/items/features/`, {params:params}); }