Tomer Cohen - UI

Results 5 comments of Tomer Cohen - UI

@wfmonster @28development Add `import 'ace-builds/webpack-resolver'` and it will solve this error

Solve it like this ```javascript ngOnInit() { this.form.statusChanges.pipe(takeUntil(this.destroyed), pairwise()) .subscribe(([prev, next]) => { if (prev === 'PENDING' && next !== 'PENDING') { this.form.updateValueAndValidity(); } }); } ```

> > Solve it like this > > ```js > > ngOnInit() { > > this.form.statusChanges.pipe(takeUntil(this.destroyed), pairwise()) > > .subscribe(([prev, next]) => { > > if (prev === 'PENDING' &&...

> yes, that's exactly the problem. At the point in time I ran into the issue, that problem was being caused by the `form.statusChanges` not emitting at all after the...

@sidorares do you think the new version will come out soon?