angular-realworld-example-app
angular-realworld-example-app copied to clipboard
Resolved issue #35
when image src in article.component.html at commnet footer section is null. It is performing a get call to http://localhost:4200/null . Wrote a ternary operator to change it to empty string if image src is null.
<img [src]="currentUser.image==null?'':currentUser.image" class="comment-author-img" />
Please close #35 issue if it is resolved.