Commit 4f318b61 authored by Coung Ngo's avatar Coung Ngo

Fix epic bar title text

Epic bars were incorrectly displaying the description
instead of the title
parent 3d13b601
...@@ -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