mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
table fixes
This commit is contained in:
parent
0fc353ebac
commit
e69f6c5b9d
@ -62,6 +62,11 @@ function loadBuildTable(table, options) {
|
||||
title: 'Created',
|
||||
sortable: true,
|
||||
},
|
||||
{
|
||||
field: 'completion_date',
|
||||
title: 'Completed',
|
||||
sortable: true,
|
||||
},
|
||||
],
|
||||
});
|
||||
}
|
||||
|
@ -64,7 +64,7 @@
|
||||
field: 'part_detail.full_name',
|
||||
title: '{% trans "Part" %}',
|
||||
formatter: function(value, row, index, field) {
|
||||
return imageHoverIcon(row.part_detail.image_url) + renderLink(value, '/part/' + row.part + '/suppliers/');
|
||||
return imageHoverIcon(row.part_detail.thumbnail) + renderLink(value, '/part/' + row.part + '/suppliers/');
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user