Fix tags area component active

This commit is contained in:
Mo Bitar
2018-01-26 13:05:03 -06:00
parent 457eb6f043
commit 04060a3dc3
3 changed files with 2 additions and 3 deletions

View File

@@ -376,7 +376,7 @@ class ComponentManager {
for(let handler of this.handlersForArea(component.area)) {
if(handler.contextRequestHandler) {
var itemInContext = handler.contextRequestHandler(component);
if(itemInContext.uuid == item.uuid) {
if(itemInContext && itemInContext.uuid == item.uuid) {
return true;
}
}