From e22c62ebab1d34bdefc85108bc651e1a4f382531 Mon Sep 17 00:00:00 2001 From: Korina Cordero Date: Fri, 10 May 2019 01:30:03 +0000 Subject: [PATCH] Fix for text issue when deleting an API role. #194 --- templates/api-role/list.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/api-role/list.html.twig b/templates/api-role/list.html.twig index db731ca3..4836085c 100644 --- a/templates/api-role/list.html.twig +++ b/templates/api-role/list.html.twig @@ -92,11 +92,11 @@ template: function (row, index, datatable) { var actions = ''; if (row.meta.update_url != '') { - actions += ''; + actions += ''; } if (row.meta.delete_url != '') { - actions += ''; + actions += ''; } return actions;