Skip to content
This repository was archived by the owner on Jun 11, 2025. It is now read-only.

Commit 7119cbe

Browse files
committed
[ACS-5839] minor fix to trigger gha deployment
1 parent 03c641d commit 7119cbe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/api/content-rest-api/api/tags.api.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -265,10 +265,10 @@ parameter are returned in addition to those specified in the **fields** paramete
265265
where = opts.matching ? `(tag matches ('${opts.tag}'))` : `(tag='${opts.tag}')`;
266266
}
267267
const queryParams = {
268-
'skipCount': opts['skipCount'],
269-
'maxItems': opts['maxItems'],
270-
'fields': buildCollectionParam(opts['fields'], 'csv'),
271-
'include': buildCollectionParam(opts['include'], 'csv'),
268+
'skipCount': opts?.skipCount,
269+
'maxItems': opts?.maxItems,
270+
'fields': buildCollectionParam(opts?.fields, 'csv'),
271+
'include': buildCollectionParam(opts?.include, 'csv'),
272272
where
273273
};
274274

@@ -324,9 +324,9 @@ parameter are returned in addition to those specified in the **fields** paramete
324324
};
325325

326326
const queryParams = {
327-
'skipCount': opts['skipCount'],
328-
'maxItems': opts['maxItems'],
329-
'fields': buildCollectionParam(opts['fields'], 'csv')
327+
'skipCount': opts?.skipCount,
328+
'maxItems': opts?.maxItems,
329+
'fields': buildCollectionParam(opts?.fields, 'csv')
330330
};
331331

332332
const headerParams = {

0 commit comments

Comments
 (0)