Skip to content

Commit 18d5c8d

Browse files
committed
change lower bound year to 2023
1 parent cd4e545 commit 18d5c8d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

assets/js/news/news.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ module('tid-custom', ['ngAnimate'])
4141

4242
angular.module("app", ['tid-custom']).controller("PostController", function($scope, $sce) {
4343
$scope.sortByValue = '-date';
44-
$scope.lowerBoundYear = 2021;
44+
$scope.lowerBoundYear = 2023;
4545

4646
for (var i = 0; i < posts.items.length; i++) {
4747
var post = posts.items[i],

assets/js/news/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ angular.module("app", ['ngAnimate']).controller("ReleaseController", function($s
55
$scope.releases = [];
66
$scope.activeYear = null;
77

8-
$scope.lowerBoundYear = 2021;
8+
$scope.lowerBoundYear = 2023;
99

1010
$scope.filterByPublishedAt = function(value, index, array) {
1111
return !$scope.activeYear || ($scope.activeYear && value.publishedAt.value.getFullYear() == $scope.activeYear);

0 commit comments

Comments
 (0)