Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting aw snap error in Chrome and Firefox in Angular 5 app

Tags:

I am getting aw snap error page at unexpected times in my Angular 5 app. Is there any fix for that?

like image 545
Akshay Avatar asked Jun 13 '18 05:06

Akshay


People also ask

What does Status_breakpoint mean?

The STATUS BREAKPOINT error in Chrome or Edge usually occurs on overclocked computers when the user scrolls through web pages. In other cases, the error is caused by an outdated version of the web browser or a browser extension that prevents the page from loading.


1 Answers

This is late but it may useful for someone in the future The problem is, I called the own selector in the HTML file... For ex., inside the shopping-list.component.html I called the same html component selector again mentioned below.so it crashes.

 <div class="row">
    <div class="col-xs-10">
        <app-shopping-list></app-shopping-list>
        <p>The list</p>
    </div>
</div>

so check that you are calling the same selector file inside html and remove that from html

like image 72
Sivashankar Avatar answered Sep 28 '22 17:09

Sivashankar