Skip to content

Commit

Permalink
Changing UI so new name for filter parameter is used.
Browse files Browse the repository at this point in the history
  • Loading branch information
longdogz committed Nov 16, 2016
1 parent d548612 commit 6d9accc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/ui/app/scripts/controllers/ExperimentsCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ angular.module('wasabi.controllers').
queryParams.filter = addAdvParam(queryParams.filter, 'state_exact=' + $scope.data.advStatus);
}
if ($scope.data.advExperimentName && $.trim($scope.data.advExperimentName).length > 0) {
queryParams.filter = addAdvParam(queryParams.filter, 'experiment_name=' + $.trim($scope.data.advExperimentName));
queryParams.filter = addAdvParam(queryParams.filter, 'experiment_label=' + $.trim($scope.data.advExperimentName));
}
if ($scope.data.adv1stDateSearchType !== 'isAny') {
queryParams.filter = addAdvParam(queryParams.filter, 'date_constraint_' +
Expand Down

0 comments on commit 6d9accc

Please sign in to comment.