diff --git a/src/components/editor/PropertyTemplateOutline.jsx b/src/components/editor/PropertyTemplateOutline.jsx index f547fd4b5..e227ba04a 100644 --- a/src/components/editor/PropertyTemplateOutline.jsx +++ b/src/components/editor/PropertyTemplateOutline.jsx @@ -43,8 +43,8 @@ export const getLookupConfigItems = (property) => { let templateConfigItems = []; templateUris.forEach(templateUri => { let configItem = getLookupConfigForTemplateUri(templateUri); - if(configItem != null) - templateConfigItems.push(configItem); + //TODO: Handle when this is undefined? + templateConfigItems.push(configItem); }); return templateConfigItems; }