Fix a bug with arrow in slider of selected filters.

This commit is contained in:
Konstantinos Triantafyllou 2022-06-15 11:08:09 +03:00
parent ed7e66852a
commit 6984e4a4c6
2 changed files with 3 additions and 2 deletions

View File

@ -67,7 +67,7 @@
</div>
<div class="">
<a class="uk-position-center-left blur-background" uk-slider-item="previous"><span uk-icon="chevron-left"></span></a>
<a class="uk-position-center-right blur-background " uk-slider-item="next"><span uk-icon="chevron-right"></span></a>
<a class="uk-position-center-right blur-background" uk-slider-item="next"><span uk-icon="chevron-right"></span></a>
</div>
</div>
</div>

View File

@ -1641,7 +1641,8 @@ export class NewSearchPageComponent implements OnInit, OnDestroy, OnChanges {
this.checkSelectedFilters(this.filters);
this.countSelectedFilters(this.filters);
this.updateMeta(this.pageTitle)
this.updateMeta(this.pageTitle);
this.cdr.detectChanges();
return this.filters;
}