fix for grouping items with no type

Fixed an error that caused the app to crash when trying to group a bulk set of items when there are items with no "type" property. Items something like "delete request" items had no type.
This commit is contained in:
2024-05-06 10:40:15 -05:00
parent bcade85182
commit 3695cd8975

View File

@@ -84,6 +84,10 @@ const getPluralType = (type) =>{
// is not generated in the lookup. this is a // is not generated in the lookup. this is a
// kludge around that. (specifically availabilitySummary) // kludge around that. (specifically availabilitySummary)
plural = teamsnap.getPluralType(type) || (function() { plural = teamsnap.getPluralType(type) || (function() {
if (type === undefined){
return type
}
switch (type.slice(-1)) { switch (type.slice(-1)) {
case 'y': case 'y':
return type.slice(0, -1) + 'ies'; return type.slice(0, -1) + 'ies';