From 40da013c5c7fb701d4cf703349a73e36d08068ed Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Fri, 10 May 2019 01:44:30 +0000 Subject: [PATCH] Fix for text issue when deleting a hub, outlet, or role. #209 --- templates/hub/list.html.twig | 4 ++-- templates/outlet/list.html.twig | 4 ++-- templates/role/list.html.twig | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/templates/hub/list.html.twig b/templates/hub/list.html.twig index 398e9c26..d1a7bedc 100644 --- a/templates/hub/list.html.twig +++ b/templates/hub/list.html.twig @@ -114,11 +114,11 @@ var actions = ''; if (row.meta.update_url != '') { - actions += ''; + actions += ''; } if (row.meta.delete_url != '') { - actions += ''; + actions += ''; } return actions; diff --git a/templates/outlet/list.html.twig b/templates/outlet/list.html.twig index cdda3f33..6b69ee91 100644 --- a/templates/outlet/list.html.twig +++ b/templates/outlet/list.html.twig @@ -118,11 +118,11 @@ var actions = ''; if (row.meta.update_url != '') { - actions += ''; + actions += ''; } if (row.meta.delete_url != '') { - actions += ''; + actions += ''; } return actions; diff --git a/templates/role/list.html.twig b/templates/role/list.html.twig index 5a1248cd..0229719e 100644 --- a/templates/role/list.html.twig +++ b/templates/role/list.html.twig @@ -93,11 +93,11 @@ var actions = ''; if (row.meta.update_url != '') { - actions += ''; + actions += ''; } if (row.meta.delete_url != '') { - actions += ''; + actions += ''; } return actions; @@ -139,4 +139,4 @@ }); }); -{% endblock %} \ No newline at end of file +{% endblock %}