diff options
author | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-24 00:43:26 +0100 |
---|---|---|
committer | Sonja Galovic <galovicsonja@gmail.com> | 2022-03-24 00:43:26 +0100 |
commit | 1113f094ffee030fd9892deb7577927419860013 (patch) | |
tree | eb4b627830e2bf340f60936a7d5d6289434972b6 /frontend/src/app/_pages/profile | |
parent | 6a4abae42f6a785f4e666b8fee23211e9e0ba543 (diff) | |
parent | 495607f3ce83d107e3a525c658e70355ec94d488 (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
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> |