File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
public/project/components Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11< div *ngIf ='!fetchingMovie ' class ="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 ">
22 < h1 class ="movie-title "> {{movie.title}}</ h1 >
33 < div class ="col-sm-4 col-md-5 ">
4- < img *ngIf ="movie.image !== 'N/A' " class ="movie-image " src ={{movie.image}} >
4+ < img *ngIf ="movie.image !== 'N/A' " class ="movie-image " src ="" >
55 < div >
66 < button class ="btn btn-small " (click) ="addMovie() "> +</ button >
77 < span class ="glyphicon glyphicon-star "> </ span >
Original file line number Diff line number Diff line change 22 < h1 > Movies</ h1 >
33 < ul >
44 < li *ngFor ="#movie of movies " class ="movie-li ">
5- < img *ngIf ="movie.image !== 'N/A' " class ={{movie.imdbId}} src ={{movie.image}} >
5+ < img *ngIf ="movie.image !== 'N/A' " class ={{movie.imdbId}} src ="" >
66 < label attr.for ={{movie.imdbId}} [routerLink] ="['/Movie', { movie: movie.imdbId }] ">
77 {{movie.title}}
88 </ label >
Original file line number Diff line number Diff line change 11< div *ngIf ="!fetchingResults " class ="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 ">
22 < ul >
33 < li *ngFor ="#movie of results.movies " class ="movie-li ">
4- < img *ngIf ="movie.image !== 'N/A' " class ={{movie.imdbId}} src ={{movie.image}} >
4+ < img *ngIf ="movie.image !== 'N/A' " class ={{movie.imdbId}} src ="" >
55 < label attr.for ={{movie.imdbId}} [routerLink] ="['/Movie', { movie: movie.imdbId }] ">
66 {{movie.title}}
77 </ label >
You can’t perform that action at this time.
0 commit comments