Add the tag css details from data to the js generated tag entries

Also change div to a so that we can reuse the tag css styling
This commit is contained in:
Cristian Guerrero 2023-12-05 12:07:47 -05:00
parent 0b4b34afad
commit ccbda01634
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ class _LobstersFunction {
'</div>';
},
item: function(data) {
return '<div class="data-ts-item">' + data.value + '</div>';
return '<a class="data-ts-item ' + data.tagCss + '">' + data.value + '</div>';
}
}
});