Because you are editing the component programaticaly instead of doing it directly through the DOM, Angular does not detect the change in the model.
However, in Angular 2, each component has its own scope, so you have to apply the changes to the component's scope itself.
> ng.probe($0)._debugInfo._view.changeDetectorRef.detectChanges()
... or
> $a._debugInfo._view.changeDetectorRef.detectChanges()