From 459be37da086b0a5f5d76d2e29f156447c57528e Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 1 May 2020 21:35:38 +0000 Subject: [PATCH] Bug 17268: (follow-up) Don't show the macro ID in front of description I believe it's nicer to allow users to organize the macros as they want using the descrpitions they prefer. Submitting as a suggestion. Signed-off-by: Katrin Fischer --- koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc index f3b4cece8d..cc038b955a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/cateditor-ui.inc @@ -845,7 +845,7 @@ require( [ 'koha-backend', 'search', 'macros', 'marc-editor', 'marc-record', 'pr $.ajax(options) .then(function(result) { $.each(result,function( undef, macro ){ - var $li = $( '
  • '+ macro.macro_id + ' - ' + macro.name + '
    1. ' ); + var $li = $( '
    2. ' + macro.name + '
      1. ' ); if ( macro.macro_id == macroEditor.activeMacroId ) $li.addClass( 'active' ); $li.click( function() { loadMacro(macro.name, macro.macro_id, macro.shared); -- 2.11.0