Skip to content

Commit

Permalink
fix: Eliminacion de conversion to String
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Aguazaco committed Jul 13, 2022
1 parent 669fd75 commit ffec6d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/scripts/directives/metas/metas-actividades.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ angular
itemactividad["registro_plan_adquisiciones-actividad"].forEach(function (item){
var actcont = 0;
var movi = $scope.movimiento.filter(function(mov){
return mov.datos.ActividadId === item.actividad.Id.toString();
return mov.datos.ActividadId === item.actividad.Id;
});
if(movi && movi.length){
item.FuentesFinanciamiento.forEach(function (fuente){
Expand Down

0 comments on commit ffec6d8

Please sign in to comment.