Commit a5004c79 authored by Kushal Pandya's avatar Kushal Pandya

Merge branch '5164-fix-epic-bar-title' into 'master'

Fix roadmap epic bar title text in popover

See merge request gitlab-org/gitlab!27391
parents 72d37d24 4f318b61
...@@ -14,7 +14,7 @@ shows such a visualization for all the epics which are under a group and/or its ...@@ -14,7 +14,7 @@ shows such a visualization for all the epics which are under a group and/or its
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/5164) in GitLab 12.9. > [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/5164) in GitLab 12.9.
On the epic bars, you can see their title, progress, and completed weight percentage. On the epic bars, you can see their title, progress, and completed weight percentage.
When you hover over an epic bar, a popover appears with its description, start and due dates, and weight completed. When you hover over an epic bar, a popover appears with its title, start and due dates, and weight completed.
![roadmap view](img/roadmap_view_v12_9.png) ![roadmap view](img/roadmap_view_v12_9.png)
......
...@@ -191,7 +191,7 @@ export default { ...@@ -191,7 +191,7 @@ export default {
</a> </a>
<gl-popover <gl-popover
:target="`epic-bar-${epic.id}`" :target="`epic-bar-${epic.id}`"
:title="epic.description" :title="epic.title"
triggers="hover focus" triggers="hover focus"
placement="right" placement="right"
> >
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment