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
806
Merge Requests
55
CI / CD
Security & Compliance
Packages
Wiki
Snippets
Members
Collapse sidebar
Close sidebar
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Minds
Minds Frontend
Commits
88fc8324
Commit
88fc8324
authored
1 hour ago
by
Emiliano Balbuena
Browse files
Options
Download
(fix): Avatar issue
parent
3fb537fb
goal/pro-sso
1 merge request
!656
SSO for Pro sites
Pipeline
#96296146
running with stages
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/common/components/avatar/avatar.ts
View file @
88fc8324
...
...
@@ -63,7 +63,7 @@ export class MindsAvatar {
if
(
this
.
object
.
type
!==
'
user
'
)
{
this
.
src
=
`
${
this
.
minds
.
cdn_url
}
fs/v1/avatars/
${
this
.
object
.
guid
}
/large/
${
this
.
object
.
icontime
}
`
;
}
else
if
(
this
.
minds
.
user
&&
this
.
object
.
guid
!==
this
.
minds
.
user
.
guid
)
{
}
else
if
(
!
this
.
minds
.
user
||
this
.
object
.
guid
!==
this
.
minds
.
user
.
guid
)
{
this
.
src
=
`
${
this
.
minds
.
cdn_url
}
icon/
${
this
.
object
.
guid
}
/large/
${
this
.
object
.
icontime
}
`
;
}
}
...
...
This diff is collapsed.
Please
register
or
sign in
to comment