skip to Main Content

working on an Angular 13 project and getting an exception:

TypeError: Cannot read properties of null (reading ‘getParsed’)
at …/main.2506c840be361c93.js:1:325924
at Array.filter ()
at nd._getActiveElements (…/main.2506c840be361c93.js:1:325808)
at nd.handleEvent (…/main.2506c840be361c93.js:1:325525)
at Object.afterEvent (…/main.2506c840be361c93.js:1:326752)
at Fe (…/main.2506c840be361c93.js:1:152333)
at Au._notify (…/main.2506c840be361c93.js:1:256447)
at Au.notify (…/main.2506c840be361c93.js:1:256268)
at ta.notifyPlugins (…/main.2506c840be361c93.js:1:275524)
at ta._eventHandler (…/main.2506c840be361c93.js:1:276188)

I searched for occurrences of ".getParsed" in the entire application but there are no results. Same with node_modules. Hopefully someone here as encountered this?

Thanks in advance 🙂

2

Answers


  1. Variable value exist, Check before errored line. Like below

    let abc = null;
    if(abc){
     /* Execute code */
    }
    
    Login or Signup to reply.
  2. asdaasdasdasdasdsadasdasdasdasd
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search