Skip to content

Commit

Permalink
YDA-5552: ensure number of items in datarequest index is an integer
Browse files Browse the repository at this point in the history
  • Loading branch information
lwesterhof committed Nov 30, 2023
1 parent bddd28e commit 967a7af
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions datarequest/static/datarequest/js/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ function startBrowsing(items)
"processing": true,
"serverSide": true,
"iDeferLoading": 0,
"pageLength": items
"pageLength": parseInt(items)
});

buildFileBrowser();
Expand Down Expand Up @@ -215,7 +215,7 @@ function convertToHumanReadableStatus(status) {
return "Data ready";
default:
return "Unknown status";
}
}
}


Expand Down

0 comments on commit 967a7af

Please sign in to comment.