hover effect added to projects that contain a link

master
alex 2022-07-28 18:45:30 +02:00
parent 390e679fb4
commit 59e70bd1e5
1 changed files with 5 additions and 1 deletions

View File

@ -83,7 +83,11 @@ function RenderProjects(props) {
return list.german.map((project, index) => (
<tr key={"a" + index}>
<td key={"b" + index}>
<a href={project.link}>{project.name}</a>
{project.link === undefined ? (
project.name
) : (
<a href={project.link}>{project.name}</a>
)}
</td>
<td key={"c" + index}>{project.description}</td>
<td key={"d" + index}>{project.language}</td>