Skip to content

Commit 352bae2

Browse files
committed
Fix dependency injection
1 parent 9590ae7 commit 352bae2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

client/app/modules/notes/services/notes.service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
'use strict';
22
var app = angular.module('com.module.notes');
33

4-
app.service('NotesService', ['$state', 'CoreService', 'Note', function ($state, CoreService, Note, gettextCatalog) {
4+
app.service('NotesService', ['$state', 'CoreService', 'Note', 'gettextCatalog', function ($state, CoreService, Note, gettextCatalog) {
55

66
this.getNotes = function () {
77
return Note.find();

0 commit comments

Comments
 (0)