added "format" type

This commit is contained in:
Rose L. Liverman 2019-12-21 01:26:20 -08:00 committed by GitHub
parent 95d7d45798
commit 2414543d55
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -38,6 +38,7 @@ function Util()
case 'link': icon = 'fas fa-link'; break;
case 'true': icon = 'fas fa-check'; break;
case 'false': icon = 'fas fa-times'; break;
case 'format': icon = 'fas fa-barcode'; break;
}
return icon;
}
@ -121,4 +122,4 @@ function Util()
return hostname;
}
}
}