Commit 5f6d8f96 authored by Mark Harding's avatar Mark Harding Committed by Mark Harding

Merge branch 'fix/hide-text-posts-933' into 'master'

(feat): hide text only posts

Closes engine#933

See merge request !585
1 merge request!590WIP: Epic/pro affiliate launch
Pipeline #89135082 running with stages
......@@ -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$() {
......
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