Skip to content

Commit

Permalink
Fix GladysAssistant#565 : Click on integration name open integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Gilles committed Oct 22, 2019
1 parent 12d0573 commit 2c87da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion front/src/routes/integration/IntegrationCategory.jsx
Expand Up @@ -10,7 +10,7 @@ const IntegrationCategory = ({ children, ...props }) => (
</Link>
<div class="card-body d-flex flex-column">
<h4>
<Link href="#">{integration.name}</Link>
<Link href={`${props.currentUrl}/${integration.key}`}>{integration.name}</Link>
</h4>
<div class="text-muted">{integration.description}</div>
</div>
Expand Down

0 comments on commit 2c87da3

Please sign in to comment.