mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-19 05:25:42 +00:00
Various form fixes
- Updating forms, a lot has changed!
This commit is contained in:
@ -648,9 +648,12 @@ function loadBuildTable(table, options) {
|
||||
sortable: true,
|
||||
formatter: function(value, row, index, field) {
|
||||
|
||||
var name = row.part_detail.full_name;
|
||||
var html = imageHoverIcon(row.part_detail.thumbnail);
|
||||
|
||||
return imageHoverIcon(row.part_detail.thumbnail) + renderLink(name, '/part/' + row.part + '/');
|
||||
html += renderLink(row.part_detail.full_name, `/part/${row.part}/`);
|
||||
html += makePartIcons(row.part_detail);
|
||||
|
||||
return html;
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user