diff --git a/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.js b/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.js index ae428f2d4d..cb3e7fb309 100644 --- a/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.js +++ b/awx/ui_next/src/screens/Job/JobOutput/shared/jobOutputUtils.js @@ -3,7 +3,7 @@ export default function getRowRangePageSize(startIndex, stopIndex) { let pageSize; if (startIndex === stopIndex) { - page = startIndex; + page = startIndex + 1; pageSize = 1; } else if (stopIndex >= startIndex + 50) { page = Math.ceil(startIndex / 50);