1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-01 21:52:19 +01:00

Merge branch 'dev' into staging

This commit is contained in:
Du Peng 2023-07-04 16:15:43 +02:00
commit 6f209dcb78

View File

@ -322,8 +322,8 @@ Application.Controllers.controller('ProjectsController', ['$scope', '$state', 'P
$location.$$search.member_id = ''; $location.$$search.member_id = '';
} }
fromDate = $location.$$search.from_date ? new Date($location.$$search.from_date) : undefined; const fromDate = $location.$$search.from_date ? new Date($location.$$search.from_date) : undefined;
toDate = $location.$$search.to_date ? new Date($location.$$search.to_date) : undefined; const toDate = $location.$$search.to_date ? new Date($location.$$search.to_date) : undefined;
// default search parameters // default search parameters
$scope.search = { $scope.search = {