Test Fix for POCONSOLE-34 of tags not clearing data correctl

This commit is contained in:
Patrick McDonagh
2016-05-09 15:41:50 -05:00
parent 6f58daa492
commit 59ec89bd2a

View File

@@ -49,7 +49,7 @@ poconsole.controller('tagsCtrl', function($scope, $route, $http, $routeParams, P
var getTag = tags.getTag(id);
getTag.then(function(data){
$scope.error = false;
$scope.dTagValues = data.tag;
$scope.dTagValues = data.tag[0];
$log.info("Thinking about deleting tag data with parameters: "+ JSON.stringify($scope.dTagValues));
});
};