Compare commits

..

No commits in common. "d6c55ef82b539f03deeca3f13c66ccaab34e0aca" and "0e8bd5343d93ac149c5e9dbedc88f4ddf6252d24" have entirely different histories.

View File

@ -27,7 +27,7 @@ export class ItemTypeService {
getExtraAttributes(itemType: string) { getExtraAttributes(itemType: string) {
let extraAttributes = null; let extraAttributes = null;
if (this.itemTypes[itemType] && this.itemTypes[itemType]?.extraAttributes) extraAttributes = this.itemTypes[itemType]?.extraAttributes; if (this.itemTypes[itemType] && this.itemTypes[itemType].extraAttributes) extraAttributes = this.itemTypes[itemType].extraAttributes;
return extraAttributes; return extraAttributes;
} }