mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Fix the total page count in the history tab
This commit is contained in:
parent
f823611c2e
commit
b4a6daef11
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ controllers.controller("historyController", function($scope, $http, $timeout) {
|
|||
if ($scope.filteredItemPages[0].length === 0) {
|
||||
return "None";
|
||||
}
|
||||
return ($scope.currentPage + 1) + " / " + ($scope.filteredItemPages.length + 1);
|
||||
return ($scope.currentPage + 1) + " / " + $scope.filteredItemPages.length;
|
||||
};
|
||||
|
||||
$scope.prevPage = function () {
|
||||
|
|
Loading…
Reference in a new issue