fix(web): supplies missing (optional) argument to prevent warnings

This commit is contained in:
jahorton 2020-12-23 10:12:25 +07:00
parent eefb21320d
commit d482dee5fd

View file

@ -322,7 +322,8 @@ namespace com.keyman.dom {
// Now that we've fully entered the new context, invalidate the context so we can generate initial predictions from it.
if(this.keyman.modelManager) {
this.keyman.core.languageProcessor.invalidateContext();
let outputTarget = dom.Utils.getOutputTarget(lastElem);
this.keyman.core.languageProcessor.invalidateContext(outputTarget);
}
}