Make whole task clickable #1760
Labels
No Label
dependencies
duplicate
help wanted
invalid
kind/bug
kind/feature
needs reproduction
question
security
wontfix
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: vikunja/vikunja#1760
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Right now the singleTaskInList component has
cursor: pointer
applied to it, this implies that clicking anywhere on the list would open the task details, but that is not the case.I think we should either make the whole task a link, or remove the
cursor: pointer
attribute. I would prefer the former, but am not sure the best way to do it.This could be as simple as moving the router-link higher up, but that could cause other issues.
I think it would very well be possible to just move the
<router-link>
but we'd probably need to change the tag it has. And then there's the a11y aspect of doing that...The other problem is we'd need to make sure the other things a task item can have are still clickable (things like the pen icon or the due date) without redirecting to the task.
What areas did you find that weren't clickable but looked like they were?
I find it especially on the desktop view, where pretty much everything in the red box looks clickable but doesn't do anything when you click on it
Fixed in
2b852de06f
, feel free to reopen if you have any problems.