diff options
Diffstat (limited to 'frontend/src/app/_pages/profile')
-rw-r--r-- | frontend/src/app/_pages/profile/profile.component.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/src/app/_pages/profile/profile.component.html b/frontend/src/app/_pages/profile/profile.component.html index 24efaeb5..d082a003 100644 --- a/frontend/src/app/_pages/profile/profile.component.html +++ b/frontend/src/app/_pages/profile/profile.component.html @@ -104,7 +104,7 @@ <div class="row overflow-auto" style="max-height: 200px;"> <div class="card col-md-3" *ngFor="let picture of this.pictures" (click)="this.photoId = picture.photoId.toString()" [ngClass]="{'selectedPicture': this.photoId == picture.photoId.toString()}"> - <img class="card-img-top" src="{{picture.path}}"> + <img src="{{picture.path}}"> </div> </div> </div> |