mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-23 03:32:32 -08:00
Added external link formatter to BS tables
This commit is contained in:
parent
3f394f42c7
commit
6f8680efa6
|
@ -389,6 +389,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function externalLinkFormatter(value) {
|
||||||
|
if (value) {
|
||||||
|
return '<a href="' + value + '" target="_blank">' + value + '</a>';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function groupsFormatter(value) {
|
function groupsFormatter(value) {
|
||||||
|
|
||||||
if (value) {
|
if (value) {
|
||||||
|
|
Loading…
Reference in a new issue