Skip to content

Commit

Permalink
Add deduplicated
Browse files Browse the repository at this point in the history
  • Loading branch information
jlpereira committed Oct 10, 2024
1 parent e50d7ed commit b6b20d4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,22 @@
<th class="w-2"></th>
<th class="w-2">Unified</th>
<th class="w-2">Not unified</th>
<th class="w-2">Deduplicated</th>
<th>Errors</th>
</tr>
</thead>
<tbody>
<template
v-for="({ merged, unmerged, errors }, key) in response.details"
v-for="(
{ merged, unmerged, deduplicated, errors }, key
) in response.details"
:key="key"
>
<tr>
<td>{{ key }}</td>
<td>{{ merged }}</td>
<td>{{ unmerged }}</td>
<td>{{ deduplicated }}</td>
<td>
<div v-if="errors">
<ul class="no_bullets">
Expand Down

0 comments on commit b6b20d4

Please sign in to comment.