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
825
Issues
825
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
da4dc7bc6aee51a2696e8266fefec017837da3d2...b6720fe3b89d1816bc4d8fdebb4578fdc9f8ecb1
Source
b6720fe3b89d1816bc4d8fdebb4578fdc9f8ecb1
Select Git revision
...
Target
da4dc7bc6aee51a2696e8266fefec017837da3d2
Select Git revision
Compare
Commits (2)
(chore): Use site_url for group banners
· aac22381
Emiliano Balbuena
authored
1 hour ago
aac22381
(chore): Use "articles" instead of "blogs" on list headers
· b6720fe3
Emiliano Balbuena
authored
54 minutes ago
b6720fe3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
26 deletions
+8
-26
list.component.html
src/app/modules/pro/channel/list/list.component.html
+7
-25
group-tile.component.ts
...p/modules/pro/channel/tiles/group/group-tile.component.ts
+1
-1
No files found.
src/app/modules/pro/channel/list/list.component.html
View file @
b6720fe3
...
...
@@ -5,40 +5,22 @@
></m-pro--channel--categories>
<h1
class=
"m-proChannelList__title"
[ngSwitch]=
"type"
>
<ng-container
*ngSwitchCase=
"'all'"
i18n
>
<ng-container
*ngSwitchCase=
"'all'"
i18n
>
All
</ng-container>
<ng-container
*ngSwitchCase=
"'videos'"
i18n
>
<ng-container
*ngSwitchCase=
"'videos'"
i18n
>
Videos
</ng-container>
<ng-container
*ngSwitchCase=
"'images'"
i18n
>
<ng-container
*ngSwitchCase=
"'images'"
i18n
>
Images
</ng-container>
<ng-container
*ngSwitchCase=
"'blogs'"
i18n
>
Blogs
<ng-container
*ngSwitchCase=
"'blogs'"
i18n
>
Articles
</ng-container>
<ng-container
*ngSwitchCase=
"'groups'"
i18n
>
<ng-container
*ngSwitchCase=
"'groups'"
i18n
>
Groups
</ng-container>
<ng-container
*ngSwitchCase=
"'activities'"
i18n
>
<ng-container
*ngSwitchCase=
"'activities'"
i18n
>
Feed
</ng-container>
</h1>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/tiles/group/group-tile.component.ts
View file @
b6720fe3
...
...
@@ -20,7 +20,7 @@ export class ProGroupTileComponent {
minds
=
window
.
Minds
;
getBanner
()
{
return
`
/
fs/v1/banners/
${
this
.
entity
.
guid
}
/
${
this
.
entity
.
banner_position
}
/'
${
this
.
entity
.
banner
}
`
;
return
`
${
this
.
minds
.
cdn_url
}
fs/v1/banners/
${
this
.
entity
.
guid
}
/
${
this
.
entity
.
banner_position
}
/'
${
this
.
entity
.
banner
}
`
;
}
getAvatar
()
{
...
...
This diff is collapsed.
Click to expand it.