Commit 4f14088f authored by Mark Harding's avatar Mark Harding

(chore): show boosts every 5 slots, vs 8

No related merge requests found
Pipeline #74559050 passed with stages
in 45 minutes and 10 seconds
......@@ -11,7 +11,7 @@
<ng-container *ngFor="let activity$ of (feedsService.feed | async); let i = index">
<ng-container *mIfFeature="'es-feeds'">
<m-featured-content
*ngIf="(i > 0 && (i % 8) === 0) || i === 2"
*ngIf="(i > 0 && (i % 5) === 0) || i === 2"
[slot]="i + 1"
></m-featured-content>
</ng-container>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment