This commit is contained in:
2020-04-08 14:22:06 +00:00
parent 6b4eed47f6
commit cefde1da23
2 changed files with 29 additions and 5 deletions

View File

@@ -147,6 +147,20 @@ export default {
}
return ret;
}, ///////////////////////////////
// ICON FOR CORE OBJECT TYPES
//(used for search results)
//
//CoreBizObject add here
iconForCoreType: function(aytype) {
switch (aytype) {
case window.$gz.type.User:
return "fa-user";
case window.$gz.type.Widget:
return "fa-vial";
default:
return null;
}
}
//new functions above here