Skip to content
This repository has been archived by the owner on Jul 18, 2020. It is now read-only.

Commit

Permalink
fix(input): handle write value not updating errors
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeT committed Aug 6, 2019
1 parent 0112070 commit 3fb1165
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/@streamjar/ui-ng/src/lib/input/input.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export class JarInputComponent implements ControlValueAccessor, OnInit {
public writeValue(obj: any): void {
this.internalValue = obj;
this.onChange(this.internalValue);
this.parseErrors();

this.cd.detectChanges();
}
Expand Down

0 comments on commit 3fb1165

Please sign in to comment.