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

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

parent 14aa9c6d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -11,7 +11,7 @@
  <ng-container *ngFor="let activity$ of (feedsService.feed | async); let i = index">
  <ng-container *ngFor="let activity$ of (feedsService.feed | async); let i = index">
    <ng-container *mIfFeature="'es-feeds'">
    <ng-container *mIfFeature="'es-feeds'">
      <m-featured-content
      <m-featured-content
        *ngIf="(i > 0 && (i % 8) === 0) || i === 2"
        *ngIf="(i > 0 && (i % 5) === 0) || i === 2"
        [slot]="i + 1"
        [slot]="i + 1"
      ></m-featured-content>
      ></m-featured-content>
    </ng-container>
    </ng-container>