From a6d2abcb45c3a8722841fb325d8dcd0ad1ac8029 Mon Sep 17 00:00:00 2001 From: gamonoid Date: Sun, 26 Nov 2017 19:44:41 +0100 Subject: [PATCH] Adding edit button to employee list --- admin/employees/lib.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/admin/employees/lib.js b/admin/employees/lib.js index 358772f3..8760d888 100644 --- a/admin/employees/lib.js +++ b/admin/employees/lib.js @@ -252,7 +252,7 @@ EmployeeAdapter.method('getFilters', function() { }); EmployeeAdapter.method('getActionButtonsHtml', function(id) { - var html = '
'; + var html = '
'; html = html.replace(/_id_/g,id); html = html.replace(/_BASE_/g,this.baseUrl); return html;