Incremental local loading, sync status on password wizard

This commit is contained in:
Mo Bitar
2018-06-03 10:08:21 -05:00
parent eb98e637e1
commit e3ff04ba3f
6 changed files with 62 additions and 20 deletions

View File

@@ -399,7 +399,9 @@ class ComponentManager {
for(let handler of this.handlersForArea(component.area)) {
if(handler.contextRequestHandler) {
var itemInContext = handler.contextRequestHandler(component);
this.sendContextItemInReply(component, itemInContext, message);
if(itemInContext) {
this.sendContextItemInReply(component, itemInContext, message);
}
}
}
}.bind(this))