diff --git a/app/controllers/Statistics.scala b/app/controllers/Statistics.scala index 66b19c2..1497a15 100644 --- a/app/controllers/Statistics.scala +++ b/app/controllers/Statistics.scala @@ -412,7 +412,7 @@ class Statistics @Inject()( def compare[T](f: Result => Set[T]) = new SetDiff(f(selection.result), f(adHocReports)) Ok(Json.obj( "vulnerabilities"->showDiff(compare(extractVulnerabilities)), - "dependencies"->showDiff(compare(_.groupedDependencies.map(GroupedDependencyIdentifier.fromGroupedDependency).toSet)) + "dependencies"->showDiff(compare(_.groupedDependencies.map(GroupedDependencyDetailedIdentifier.fromGroupedDependency).toSet)) )) } }