Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
7a704526
Commit
7a704526
authored
Aug 01, 2017
by
kushalpandya
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prop name update, minor cleanup
parent
00226a94
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
app/assets/javascripts/groups/components/group_identicon.vue
app/assets/javascripts/groups/components/group_identicon.vue
+8
-6
No files found.
app/assets/javascripts/groups/components/group_identicon.vue
View file @
7a704526
<
script
>
<
script
>
export
default
{
export
default
{
name
:
'
group-identicon
'
,
props
:
{
props
:
{
id
:
{
entityId
:
{
type
:
Number
,
required
:
true
,
required
:
true
,
},
},
n
ame
:
{
entityN
ame
:
{
type
:
String
,
type
:
String
,
required
:
true
,
required
:
true
,
},
},
...
@@ -24,14 +26,14 @@ export default {
...
@@ -24,14 +26,14 @@ export default {
'
#EEEEEE
'
,
'
#EEEEEE
'
,
];
];
const
backgroundColor
=
allowedColors
[
this
.
i
d
%
7
];
const
backgroundColor
=
allowedColors
[
this
.
entityI
d
%
7
];
return
`background-color:
${
backgroundColor
}
; color: #555;`
;
return
`background-color:
${
backgroundColor
}
; color: #555;`
;
},
},
identiconTitle
()
{
identiconTitle
()
{
return
this
.
n
ame
.
charAt
(
0
).
toUpperCase
();
return
this
.
entityN
ame
.
charAt
(
0
).
toUpperCase
();
}
}
,
}
}
,
};
};
</
script
>
</
script
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment