Fixing error in notifications. (#307)

This commit is contained in:
kevgliss 2016-05-09 17:35:18 -07:00
parent 78c8d12ad8
commit 008d608ec4
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ angular.module('lemur')
this.certificates.push(certificate);
},
removeCertificate: function (index) {
this.certificate.splice(index, 1);
this.certificates.splice(index, 1);
}
});
});