mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +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) {
|
if ($scope.filteredItemPages[0].length === 0) {
|
||||||
return "None";
|
return "None";
|
||||||
}
|
}
|
||||||
return ($scope.currentPage + 1) + " / " + ($scope.filteredItemPages.length + 1);
|
return ($scope.currentPage + 1) + " / " + $scope.filteredItemPages.length;
|
||||||
};
|
};
|
||||||
|
|
||||||
$scope.prevPage = function () {
|
$scope.prevPage = function () {
|
||||||
|
|
Loading…
Reference in a new issue