Skip to content
Next
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Switch to GitLab Next
Sign in / Register
Toggle navigation
Minds Frontend
Project
Project
Details
Activity
Releases
Dependency List
Cycle Analytics
Insights
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Locked Files
Issues
855
Issues
855
List
Boards
Labels
Service Desk
Milestones
Merge Requests
41
Merge Requests
41
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
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
cda6282ccda7ddfbac67c597bb375105b41e7339...94a13843425ef3ebe6aa52fa4986bd7f669049eb
Source
94a13843425ef3ebe6aa52fa4986bd7f669049eb
Select Git revision
...
Target
cda6282ccda7ddfbac67c597bb375105b41e7339
Select Git revision
Compare
Commits (2)
(fix): fixed algorithm in navbar links
· 3d677a02
Marcelo Rivera
authored
3 hours ago
3d677a02
(fix): list redirect
· 94a13843
Marcelo Rivera
authored
3 hours ago
94a13843
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
7 deletions
+7
-7
channel.component.html
src/app/modules/pro/channel/channel.component.html
+6
-6
pro.module.ts
src/app/modules/pro/pro.module.ts
+1
-1
No files found.
src/app/modules/pro/channel/channel.component.html
View file @
94a13843
...
...
@@ -34,42 +34,42 @@
<a
class=
"m-proChannelTopbar__navItem"
[
routerLink
]="['/
pro
',
channel
.
username
,
'
videos
']"
[
queryParams
]="{
algorithm:
'
pro
'}"
[
queryParams
]="{
algorithm:
'
top
'}"
routerLinkActive=
"active"
i18n
>
Videos
</a>
<a
class=
"m-proChannelTopbar__navItem"
[
routerLink
]="['/
pro
',
channel
.
username
,
'
images
']"
[
queryParams
]="{
algorithm:
'
pro
'}"
[
queryParams
]="{
algorithm:
'
top
'}"
routerLinkActive=
"active"
i18n
>
Images
</a>
<a
class=
"m-proChannelTopbar__navItem"
[
routerLink
]="['/
pro
',
channel
.
username
,
'
articles
']"
[
queryParams
]="{
algorithm:
'
pro
'}"
[
queryParams
]="{
algorithm:
'
top
'}"
routerLinkActive=
"active"
i18n
>
Articles
</a>
<a
class=
"m-proChannelTopbar__navItem"
[
routerLink
]="['/
pro
',
channel
.
username
,
'
groups
']"
[
queryParams
]="{
algorithm:
'
pro
'}"
[
queryParams
]="{
algorithm:
'
top
'}"
routerLinkActive=
"active"
i18n
>
Groups
</a>
<a
class=
"m-proChannelTopbar__navItem"
[
routerLink
]="['/
pro
',
channel
.
username
,
'
donate
']"
[
queryParams
]="{
algorithm:
'
pro
'}"
[
queryParams
]="{
algorithm:
'
top
'}"
routerLinkActive=
"active"
i18n
>
Donate
</a>
<a
class=
"m-proChannelTopbar__navItem"
[
routerLink
]="['/
pro
',
channel
.
username
,
'
signup
']"
[
queryParams
]="{
algorithm:
'
pro
'}"
[
queryParams
]="{
algorithm:
'
top
'}"
routerLinkActive=
"active"
*
ngIf=
"!currentUser"
i18n
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/pro.module.ts
View file @
94a13843
...
...
@@ -37,7 +37,7 @@ const routes: Routes = [
children
:
[
{
path
:
''
,
redirectTo
:
'
articles
/top
'
,
redirectTo
:
'
articles
'
,
pathMatch
:
'
full
'
},
{
...
...
This diff is collapsed.
Click to expand it.