As fotos não carregam. Os panels são carregados mas sem título e nem foto. Segue o código do controller:
angular.module('alurapic').controller('FotosController', function($scope, $http){ $scope.fotos = [];
$http.get('/v1/fotos')
.then(function(fotos){
$scope.fotos = fotos;
},
function(error){
console.log(error);
});
});
O console apresenta somente o erro: Unchecked runtime.lastError: The message port closed before a response was received