Skip to content

Commit

Permalink
Fix bug with display of Tools data on Homepage and Projects page (hac…
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwiese authored Aug 31, 2023
1 parent 6593812 commit be141ca
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions assets/js/current-projects.js
Original file line number Diff line number Diff line change
Expand Up @@ -661,14 +661,14 @@ function projectCardComponent(project){
`:""
}
${project.tools ?
`
<div class="project-tools">
<strong>Tools: </strong>
${ project.tools }
</div>
`:""
}
${project.tools ?
`
<div class="project-tools">
<strong>Tools: </strong>
${project.tools.map(tool => `<p class='project-card-field-inline'> ${ tool }</p>`).join(", ")}
</div>
`: ""
}
${project.looking ? "" : ""
// `
Expand Down

0 comments on commit be141ca

Please sign in to comment.