More work on reports and config options

This commit is contained in:
Scott Idem
2025-09-08 17:43:30 -04:00
parent 438d366b98
commit f842392aac
5 changed files with 144 additions and 102 deletions

View File

@@ -191,11 +191,11 @@ export async function get_ae_obj_li_for_obj_id_crud_v2(
headers['order_by_li'] = JSON.stringify(order_by_li);
}
if (limit >= 0) {
if (limit > 0) {
params['limit'] = limit;
}
if (offset >= 0) {
if (offset > 0) {
params['offset'] = offset;
}