Skip to content

Commit

Permalink
Fix frontend linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
arbulu89 committed Apr 12, 2022
1 parent 8a029c3 commit 615045c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/js/components/ChecksResults.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ const ChecksResults = () => {
return (
<div>
{sortHosts(cluster?.hosts_executions.slice()).map(
({ cluster_id, host_id, reachable, msg }) => (
({ _cluster_id, host_id, reachable, msg }) => (
<div key="c" className="flex flex-col">
<div className="-my-2 overflow-x-auto sm:-mx-6 lg:-mx-8">
<div className="py-2 align-middle inline-block min-w-full sm:px-6 lg:px-8">
Expand All @@ -111,7 +111,7 @@ const ChecksResults = () => {
</h3>
{reachable == false && (
<div
class="bg-yellow-200 border-yellow-600 text-yellow-600 border-l-4 p-4"
className="bg-yellow-200 border-yellow-600 text-yellow-600 border-l-4 p-4"
role="alert"
>
<p>{msg}</p>
Expand Down

0 comments on commit 615045c

Please sign in to comment.