We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 800cfb0 commit e7764b8Copy full SHA for e7764b8
apps/sim/blocks/blocks/ironclad.ts
@@ -247,8 +247,8 @@ export const IroncladBlock: BlockConfig = {
247
credential: oauthCredential,
248
...rest,
249
}
250
- if (params.page) result.page = Number(params.page)
251
- if (params.pageSize) {
+ if (params.page !== undefined) result.page = Number(params.page)
+ if (params.pageSize !== undefined && params.pageSize !== '') {
252
if (params.operation === 'list_workflows') {
253
result.perPage = Number(params.pageSize)
254
result.pageSize = undefined
0 commit comments