Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
889
Issues
889
List
Boards
Labels
Service Desk
Milestones
Merge Requests
43
Merge Requests
43
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Security & Compliance
Security & Compliance
Dependency List
Packages
Packages
List
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Compare Revisions
534f449e305ab7b29062a52745461b9d1dab8e58...68a83066b5263dd7928cb5044b8992cab7ae8329
Source
68a83066b5263dd7928cb5044b8992cab7ae8329
Select Git revision
...
Target
534f449e305ab7b29062a52745461b9d1dab8e58
Select Git revision
Compare
Commits (2)
(feat): hide text only posts
· c99df509
Marcelo Rivera
authored
1 hour ago
c99df509
Merge branch 'fix/hide-text-posts-933' into 'master'
· 68a83066
Mark Harding
authored
1 hour ago
(feat): hide text only posts Closes
engine#933
See merge request
!585
68a83066
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/app/modules/pro/channel/list/list.component.ts
src/app/modules/pro/channel/list/list.component.ts
+4
-1
No files found.
src/app/modules/pro/channel/list/list.component.ts
View file @
68a83066
...
...
@@ -16,6 +16,7 @@ import {
}
from
'
../channel.service
'
;
import
{
OverlayModalService
}
from
'
../../../../services/ux/overlay-modal
'
;
import
{
MindsTitle
}
from
'
../../../../services/ux/title
'
;
import
{
filter
}
from
'
rxjs/operators
'
;
@
Component
({
selector
:
'
m-pro--channel-list
'
,
...
...
@@ -166,7 +167,9 @@ export class ProChannelListComponent implements OnInit, OnDestroy {
}
get
entities$
()
{
return
this
.
feedsService
.
feed
;
return
this
.
feedsService
.
feed
.
pipe
(
filter
((
entity
:
any
)
=>
!!
entity
.
thumbnail_src
)
);
}
get
hasMore$
()
{
...
...
This diff is collapsed.
Click to expand it.