Skip to content

Commit

Permalink
fix: bug of showing the violation flag
Browse files Browse the repository at this point in the history
  • Loading branch information
akakou committed Oct 11, 2024
1 parent 025a8cd commit 7a60056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verifier/serv/static/js/ui/table.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const TableCompornent = ({ logs }) => {
<a href={gitRepo(server)}>{gitRepo(server)}</a>
</td>
<td>{(!!server.is_active).toString()}</td>
<td>{(server.edges.violation.length == 0).toString()}</td>
<td>{(!!server.edges.violation).toString()}</td>
</tr>
);

Expand Down

0 comments on commit 7a60056

Please sign in to comment.