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:
Diffstat (limited to 'app/assets/javascripts/groups/components/group_folder.vue')
-rw-r--r--app/assets/javascripts/groups/components/group_folder.vue7
1 files changed, 4 insertions, 3 deletions
diff --git a/app/assets/javascripts/groups/components/group_folder.vue b/app/assets/javascripts/groups/components/group_folder.vue
index 1ff984d02e2..647c9d0046d 100644
--- a/app/assets/javascripts/groups/components/group_folder.vue
+++ b/app/assets/javascripts/groups/components/group_folder.vue
@@ -23,7 +23,7 @@ export default {
return n__(
'One more item',
'%d more items',
- this.parentGroup.childrenCount - this.parentGroup.children.length
+ this.parentGroup.childrenCount - this.parentGroup.children.length,
);
},
},
@@ -47,8 +47,9 @@ export default {
<i
class="fa fa-external-link"
aria-hidden="true"
- />
- {{moreChildrenStats}}
+ >
+ </i>
+ {{ moreChildrenStats }}
</a>
</li>
</ul>