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
402
Merge Requests
66
CI / CD
Security & Compliance
Packages
Analytics
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
266c3f0d
Commit
266c3f0d
authored
1 hour ago
by
Mark Harding
Browse files
Options
Download
(fix): channel no index should be less than <
parent
de34bd78
master
No related merge requests found
Pipeline
#118017986
passed with stages
in 58 minutes and 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/app/modules/channels/channel.component.ts
View file @
266c3f0d
...
...
@@ -138,7 +138,7 @@ export class ChannelComponent {
});
this
.
metaService
.
setRobots
(
this
.
user
.
is_mature
||
this
.
user
[
'
subscribers_count
'
]
>
MIN_METRIC_FOR_ROBOTS
this
.
user
[
'
subscribers_count
'
]
<
MIN_METRIC_FOR_ROBOTS
?
'
noindex
'
:
'
all
'
);
...
...
This diff is collapsed.
Please
register
or
sign in
to comment