I got " TypeError: Cannot read property 'reset' of null " after upgrading to angular 8.
on angular 7, this error was solved by adding this line in constructor, but on angular 8 it's not working anymore
constructor( )
{
// @@@@ SCHEDULE QUICKPOPS BUG FIXES
(QuickPopups.prototype as any).applyFormValidation = () => { };
}