Skip to content

Commit

Permalink
Merge pull request #194 from dewoodruff/master
Browse files Browse the repository at this point in the history
Fixed minor typo in template creation and update notifications.
  • Loading branch information
To-om authored May 9, 2017
2 parents 378d5e2 + b5a3cf3 commit cbe8ac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/app/scripts/controllers/admin/AdminCaseTemplatesCtrl.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@

$scope.$emit('templates:refresh');

AlertSrv.log('The template [' + $scope.template.name + '] has been successfuly created', 'success');
AlertSrv.log('The template [' + $scope.template.name + '] has been successfully created', 'success');
}, function(response) {
AlertSrv.error('TemplateCtrl', response.data, response.status);
});
Expand All @@ -145,7 +145,7 @@

$scope.$emit('templates:refresh');

AlertSrv.log('The template [' + $scope.template.name + '] has been successfuly updated', 'success');
AlertSrv.log('The template [' + $scope.template.name + '] has been successfully updated', 'success');
}, function(response) {
AlertSrv.error('TemplateCtrl', response.data, response.status);
});
Expand Down

0 comments on commit cbe8ac8

Please sign in to comment.