Skip to content

Commit

Permalink
Merge pull request #358 from kikeelectronico/hotfix/edit_task
Browse files Browse the repository at this point in the history
front -  Link not closed
  • Loading branch information
kikeelectronico authored Jan 10, 2022
2 parents 892225d + f54dcb7 commit ec0801c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion back/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class Data:


version = 'v1.6.2'
version = 'v1.6.3'
homewareFile = 'homeware.json'
apikey = ''
userToken = ''
Expand Down
4 changes: 2 additions & 2 deletions front/src/components/pages/Tasks.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ class Tasks extends React.Component {
return (

<div key={i} className="task_card">
<Link to={"/tasks/manager/" + i} className="task_link"></Link>
<Link to={"/tasks/manager/" + i} className="task_link">
<h2 className="task_card_title" id={"task_" + i}>
{task.title}
</h2>
<hr className="task_card_divider" />
<p>{task.description}</p>
<Link/>
</Link>
</div>
);
});
Expand Down

0 comments on commit ec0801c

Please sign in to comment.