This commit is contained in:
2020-04-10 23:04:28 +00:00
parent 2cff272537
commit e98e254d76

View File

@@ -156,45 +156,43 @@ export default {
switch (aytype) {
case window.$gz.type.NoType:
return "fa-genderless";
case window.$gz.type.Global:
case window.$gz.type.Global:
return "fa-globe";
case window.$gz.type.User:
return "fa-user";
case window.$gz.type.Widget:
return "fa-vial";
case window.$gz.type.ServerState:
return "fa-door-open";
case window.$gz.type.License:
return "fa-ticket-alt";
case window.$gz.type.LogFile:
return "fa-glasses";
case window.$gz.type.PickListTemplate:
return "fa-pencil-ruler";
case window.$gz.type.JobOperations:
return "fa-robot";
case window.$gz.type.AyaNova7Import:
return "fa-file-import";
case window.$gz.type.TrialSeeder:
return "fa-seedling";
case window.$gz.type.Metrics:
return "fa-file-medical-alt";
case window.$gz.type.Translation:
return "fa-language";
case window.$gz.type.UserOptions:
return "fa-user-cog";
case window.$gz.type.FileAttachment:
return "fa-paperclip";
case window.$gz.type.DataListView:
return "fa-filter";
case window.$gz.type.FormCustom:
return "fa-sliders-h";
default:
return null;
}
}
/**
*
NoType = 0,
Global = 1,
[CoreBizObject]
Widget = 2,//attachable, wikiable, reviewable
[CoreBizObject]
User = 3,//attachable, wikiable, reviewable
ServerState = 4,fa-door-open
License = 5,
LogFile = 6,
PickListTemplate = 7,
DEPRECATED_REUSELATER_8 = 8,
JobOperations = 9,
AyaNova7Import = 10,
TrialSeeder = 11,
Metrics = 12,
Translation = 13,
UserOptions = 14,
DEPRECATED_REUSELATER_15 = 15,
DEPRECATED_REUSELATER_16 = 16,
FileAttachment = 17,
DataListView = 18,
FormCustom = 19
*/
//new functions above here
};