I am facing an issue with the slick carousel not updating with new data when I update the ng-repeat data in the slider from my controller.
<slick lazyLoad=ondemand init-onload=true slides-to-show=5 slides-to-scroll=1 next-arrow=".rightOne" prev-arrow=".leftOne" data="trailersUpcomming">
<div index="$index " ng-repeat="trailer in trailersUpcomming ">
<div class=" boxhover testimonialslider" style="margin-right: 12px; ">
<div class="card " style="border-color: green; ">
<div style="padding: 17px;text-align: left;height: 124px;background-color: #ffffff;">
<div>Release Date: {{trailer.releasedate}}</div>
<div>Language: {{trailer.filmlanguage}}</div>
<div>Rating: {{trailer.filmrating}}</div>
</div>
</div>
</div>
</div>
</slick>