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

PEP fixes

This commit is contained in:
Oliver
2021-11-28 22:36:47 +11:00
parent 78309c1915
commit 32be39774f
5 changed files with 4 additions and 5 deletions

View File

@ -149,7 +149,8 @@ function loadAttachmentTable(url, options) {
return renderLink(html, value);
} else if (row.link) {
return renderLink(row.link, row.link);
var html = `<span class='fas fa-link'></span> ${row.link}`;
return renderLink(html, row.link);
} else {
return '-';
}