diff options
author | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-29 12:25:21 +0200 |
---|---|---|
committer | Danijel Andjelkovic <adanijel99@gmail.com> | 2022-03-29 12:25:21 +0200 |
commit | 9f3d674413affc18377c8f2564bb660270ffe7f5 (patch) | |
tree | 045a4ac057a6a574c058b8764c04be4adea92089 /frontend/src/app/_pages/home/home.component.html | |
parent | 2833bcde639d0c8e36971b5e899488dc828a0779 (diff) | |
parent | b05ae78eba573ce6020dcb1b9afe72ef11f3365e (diff) |
Merge branch 'dev' of http://gitlab.pmf.kg.ac.rs/igrannonica/neuronstellar into dev
Diffstat (limited to 'frontend/src/app/_pages/home/home.component.html')
-rw-r--r-- | frontend/src/app/_pages/home/home.component.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/frontend/src/app/_pages/home/home.component.html b/frontend/src/app/_pages/home/home.component.html index 7e895a2d..eb59b726 100644 --- a/frontend/src/app/_pages/home/home.component.html +++ b/frontend/src/app/_pages/home/home.component.html @@ -45,12 +45,12 @@ </div> <h2 class="my-4">Pogledajte javne izvore podataka!</h2> - <app-carousel [items]="publicDatasets"> + <app-carousel *ngIf = "publicDatasets" [items]="publicDatasets"> </app-carousel> <h3><a routerLink="browse-datasets">Pogledaj sve javne izvore podataka...</a></h3> <h2 class="my-4">Iskoristite već trenirane modele!</h2> - <app-carousel [items]="publicPredictors"> + <app-carousel *ngIf = "publicPredictors" [items]="publicPredictors"> </app-carousel> <h3><a routerLink="browse-predictors">Pogledaj sve javne trenirane modele...</a></h3> </div>
\ No newline at end of file |