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
842
Issues
842
List
Boards
Labels
Service Desk
Milestones
Merge Requests
46
Merge Requests
46
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
53e675ecaab32a08d903f465be46cd84b545ef88...dee7455ba2ca2d4550e849257059a88c1a3ef69f
Source
dee7455ba2ca2d4550e849257059a88c1a3ef69f
Select Git revision
...
Target
53e675ecaab32a08d903f465be46cd84b545ef88
Select Git revision
Compare
Commits (2)
(fix): show title for images, don't show it for blogs, in media modal
· 0dbcb904
Marcelo Rivera
authored
4 minutes ago
0dbcb904
(fix): moved *ngIf after class definition
· dee7455b
Marcelo Rivera
authored
3 minutes ago
dee7455b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modal.component.ts
src/app/modules/media/modal/modal.component.ts
+1
-1
channel.component.html
src/app/modules/pro/channel/channel.component.html
+1
-1
No files found.
src/app/modules/media/modal/modal.component.ts
View file @
dee7455b
...
...
@@ -155,11 +155,11 @@ export class MediaModalComponent implements OnInit, OnDestroy {
case
'
image
'
:
this
.
contentType
=
'
image
'
;
this
.
thumbnail
=
`
${
this
.
minds
.
cdn_url
}
fs/v1/thumbnail/
${
this
.
entity
.
guid
}
/xlarge`
;
this
.
title
=
this
.
entity
.
title
;
this
.
entity
.
entity_guid
=
this
.
entity
.
guid
;
break
;
case
'
blog
'
:
this
.
contentType
=
'
blog
'
;
this
.
title
=
this
.
entity
.
title
;
this
.
entity
.
entity_guid
=
this
.
entity
.
guid
;
}
break
;
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/pro/channel/channel.component.html
View file @
dee7455b
<div
*ngIf=
"channel"
class=
"m-pro--
channel"
>
<div
class=
"m-pro--channel"
*ngIf=
"
channel"
>
<div
class=
"m-proChannel__topbar"
>
<img
class=
"m-proChannelTopbar__logo"
...
...
This diff is collapsed.
Click to expand it.