Skip to content

Commit

Permalink
Update script.js
Browse files Browse the repository at this point in the history
  • Loading branch information
lenylvt authored May 10, 2024
1 parent f81a8c7 commit 4c7ed9d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion script.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ function displayResults(data) {
data.forEach(item => {
const itemHTML = `
<div class="result-item">
<h4>${item.name}</h4>
<div>
<h4 title="${item.name}">${item.name}</h4>
<p class="epochs-info">Epochs: ${item.epochs}</p>
</div>
<p><a href="${item.link}" class="download-btn">Télécharger</a></p>
</div>
`;
Expand Down

0 comments on commit 4c7ed9d

Please sign in to comment.