[NIFI-2658] Use bulletinEntity id instead of bulleting id since the ids match but bulletinEntities do not get bulletin objects if user is not authorized. This closes #938

This commit is contained in:
Scott Aslan 2016-08-25 08:55:26 -04:00 committed by Matt Gilman
parent 6fd1c17ca4
commit 56e515f7ae
1 changed files with 1 additions and 1 deletions

View File

@ -388,7 +388,7 @@ nf.ng.BulletinBoardCtrl = function (serviceProvider) {
// record the id of the last bulletin in this request // record the id of the last bulletin in this request
if (i + 1 === bulletinEntities.length) { if (i + 1 === bulletinEntities.length) {
lastBulletin = bulletin.id; lastBulletin = bulletinEntity.id;
} }
}); });