From 2fa672b739d466ac1a2dce18c8e2f922ead55f6b Mon Sep 17 00:00:00 2001 From: optimlab Date: Mon, 7 Feb 2022 15:16:55 +0300 Subject: [PATCH] Fix autocomplete --- .../admin/view/template/extension/module/optimblog_form.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/optimblog.ocmod/upload/admin/view/template/extension/module/optimblog_form.twig b/src/optimblog.ocmod/upload/admin/view/template/extension/module/optimblog_form.twig index 132f060..f64d355 100644 --- a/src/optimblog.ocmod/upload/admin/view/template/extension/module/optimblog_form.twig +++ b/src/optimblog.ocmod/upload/admin/view/template/extension/module/optimblog_form.twig @@ -969,7 +969,7 @@ $('input[name*=\'informations\']').autocomplete({ $('#' + $(this).next().next().attr('id') + item['value']).remove(); - $(this).next().next().append('
' + item['label'] + '
'); + $(this).next().next().append('
' + item['label'] + '
'); } }); @@ -994,7 +994,7 @@ $('input[name*=\'categories\']').autocomplete({ $('#' + $(this).next().next().attr('id') + item['value']).remove(); - $(this).next().next().append('
' + item['label'] + '
'); + $(this).next().next().append('
' + item['label'] + '
'); } });