diff --git a/bitbake/lib/toaster/toastergui/templates/recipes.html b/bitbake/lib/toaster/toastergui/templates/recipes.html
index 37d9dcee0e..724bcf5879 100755
--- a/bitbake/lib/toaster/toastergui/templates/recipes.html
+++ b/bitbake/lib/toaster/toastergui/templates/recipes.html
@@ -30,7 +30,7 @@
{% if recipe.r_dependencies_recipe.all.count %}
{{recipe.name}} depends on"
+ title="{{recipe.name}} dependencies"
data-content="
{% for i in recipe.r_dependencies_recipe.all|dictsort:"depends_on.name"%}
- {{i.depends_on.name}}
@@ -44,7 +44,7 @@
{% if recipe.r_dependencies_depends.all.count %}
{{recipe.name}} is brought in by"
+ title="{{recipe.name}} reverse dependencies"
data-content="
{% for i in recipe.r_dependencies_depends.all|dictsort:"recipe.name"%}
- {{i.recipe.name}}
| |