diff --git a/public/admin/static/js/template/table.js b/public/admin/static/js/template/table.js
index c0f7ea9..f4e349d 100644
--- a/public/admin/static/js/template/table.js
+++ b/public/admin/static/js/template/table.js
@@ -101,6 +101,14 @@
case 'date':
dataListHtml += '
' + $.formatDate(dataValue[fieldName]) + ' | ';
break;
+ case 'icon':
+ if( rule.rule[dataValue[fieldName]] ){
+ styleList = rule.rule[dataValue[fieldName]];
+ dataListHtml += ' | ';
+ }else{
+ dataListHtml += '' + dataValue[fieldName] + ' | ';
+ }
+ break;
}
}else{
dataListHtml += '' + dataValue[fieldName] + ' | ';