Bug 1192199 - Return a correct line count for logviewer navigation

This commit is contained in:
Jonathan French 2015-08-21 15:48:17 -04:00
Родитель aa422df16e
Коммит 8cc59fec30
1 изменённых файлов: 1 добавлений и 2 удалений

Просмотреть файл

@ -100,7 +100,6 @@ logViewerApp.controller('LogviewerCtrl', [
LogSlice.get_line_range(lineRangeParams, {
buffer_size: LINE_BUFFER_SIZE
}).then(function(data) {
var slicedData, length;
drawErrorLines(data);
@ -247,7 +246,7 @@ logViewerApp.controller('LogviewerCtrl', [
function logFileLineCount () {
var steps = $scope.artifact.step_data.steps;
return steps[ steps.length - 1 ].finished_linenumber;
return steps[ steps.length - 1 ].finished_linenumber + 1;
}
function moveLineNumber (bounds) {