User story #1505
Backlog PBI : show description in a popup on issue link title mouseover
Status:
New
Priority:
Normal
Category:
Post-its & styling
Target version:
-
Blocked:
No
Alone:
No
Milestones:
Sprint:
Description
To avoid to click on the edit PBI button to see the description,
when the mouse cursor is on the PBI title (not the issue ID) a popup could display the Issue description.
for that : in app/views/post_its/product_backlog/_pbi.html.erb, we just have to add :description => true
:
<tr> <td class="content" colspan="2"> <%= link_to_issue(pbi, :tracker => false, :project => project != pbi.project, :description => true) %> </td> </tr>
Updated by Redmine Smile almost 7 years ago
Merge Request : https://git.ociotec.com/redmine/scrum/merge_requests/5
Updated by Emilio González Montaña almost 7 years ago
How this change works? I've tried to mouse over the issue subject in post-its (PBI's & tasks) in Sprint board, but nothing pops up...
Updated by Emilio González Montaña almost 7 years ago
Redmine code link_to_issue
doesn't have a :description
option, so maybe you've a plugin that adds this option... let me known.
Updated by Redmine Smile almost 7 years ago
You're right, this option was added in our pluggin.
The problem it that it's a pretty obtrusive modification.