Skip to content
Projects
Groups
Snippets
Help
Sign in / Register
Toggle navigation
Minds Frontend
Project overview
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
403
Merge Requests
58
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
1ea1f841
Commit
1ea1f841
authored
7 minutes ago
by
Emiliano Balbuena
Browse files
Options
Download
(fix): Feature flag for "posts older" divider
parent
768c7a5f
goal/top-algorithm-redux-2
1 merge request
!677
Allow period fallbacks on Discovery feeds
Pipeline
#101240961
running with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
src/app/modules/newsfeed/feeds/sorted.component.html
View file @
1ea1f841
...
...
@@ -39,12 +39,14 @@
></m-featured-content>
</ng-container>
<div
*ngIf=
"i === (feedsService.fallbackAtIndex | async)"
class=
"m-feeds-sorted__fallbackLegend"
>
<span
i18n
>
Posts older than {{ period | uppercase }}
</span>
</div>
<ng-container
*mIfFeature=
"'top-feeds-by-age'"
>
<div
*ngIf=
"i === (feedsService.fallbackAtIndex | async)"
class=
"m-feeds-sorted__fallbackLegend"
>
<span
i18n
>
Posts older than {{ period | uppercase }}
</span>
</div>
</ng-container>
<ng-container
*ngIf=
"entity$ | async as entity"
>
<m-newsfeed
__entity
...
...
This diff is collapsed.
Please
register
or
sign in
to comment