Skip to content

Commit

Permalink
Merge pull request #2 from datascience/feature/UI-conflicts
Browse files Browse the repository at this point in the history
Add conflict rate to UI
  • Loading branch information
artourkin authored Oct 23, 2023
2 parents 7be5a4c + 7221170 commit 1b6a4a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ public Map<String, Object> getSizeStatistics() {
Long totalCount = characterisationResultViewRepository.getTotalCount();
result.put("totalCount", totalCount);

Long conflictRate = characterisationResultViewRepository.getConflictCount();
double conflictRate = this.getConflictRate();
result.put("conflictRate", conflictRate);

List<Object[]> sizeDistribution = characterisationResultViewRepository.getSizeDistribution();
Expand Down

0 comments on commit 1b6a4a1

Please sign in to comment.