2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 18:15:40 +00:00

Merge pull request #2083 from SchrodingersGat/search-results

Display "full_name" rather than "name" in quick search bar
This commit is contained in:
Oliver
2021-09-30 09:42:50 +10:00
committed by GitHub

View File

@ -116,7 +116,7 @@ function inventreeDocReady() {
success: function(data) {
var transformed = $.map(data.results, function(el) {
return {
label: el.name,
label: el.full_name,
id: el.pk,
thumbnail: el.thumbnail
};