Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkushalpandya <kushal@gitlab.com>2017-08-01 12:08:54 +0300
committerkushalpandya <kushal@gitlab.com>2017-08-01 12:08:54 +0300
commit7a704526329d9615f9ab6a26f3a8113f374f311e (patch)
tree32cabcc59c08461bea54da874a423fe4f31b7abe /app/assets/javascripts/groups
parent00226a9404d8e453a06d09ec54628a4eb66d98ec (diff)
Prop name update, minor cleanup
Diffstat (limited to 'app/assets/javascripts/groups')
-rw-r--r--app/assets/javascripts/groups/components/group_identicon.vue14
1 files changed, 8 insertions, 6 deletions
diff --git a/app/assets/javascripts/groups/components/group_identicon.vue b/app/assets/javascripts/groups/components/group_identicon.vue
index 4e0898b6c44..ba921a177e9 100644
--- a/app/assets/javascripts/groups/components/group_identicon.vue
+++ b/app/assets/javascripts/groups/components/group_identicon.vue
@@ -1,10 +1,12 @@
<script>
export default {
+ name: 'group-identicon',
props: {
- id: {
+ entityId: {
+ type: Number,
required: true,
},
- name: {
+ entityName: {
type: String,
required: true,
},
@@ -24,14 +26,14 @@ export default {
'#EEEEEE',
];
- const backgroundColor = allowedColors[this.id % 7];
+ const backgroundColor = allowedColors[this.entityId % 7];
return `background-color: ${backgroundColor}; color: #555;`;
},
identiconTitle() {
- return this.name.charAt(0).toUpperCase();
- }
- }
+ return this.entityName.charAt(0).toUpperCase();
+ },
+ },
};
</script>