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:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-06-08 21:09:19 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-08 21:09:19 +0300
commit33ed90457e6c14d8344882efa01355c080e14149 (patch)
treeda22f262f096d619cbf79175bb54cd048a65f945 /app/assets/javascripts/groups
parente18e22ce4c7a4ee0680adda25e4cfa9cf4bb1be4 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/groups')
-rw-r--r--app/assets/javascripts/groups/components/item_caret.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/groups/components/item_caret.vue b/app/assets/javascripts/groups/components/item_caret.vue
index a51edd385dd..94d39a9c572 100644
--- a/app/assets/javascripts/groups/components/item_caret.vue
+++ b/app/assets/javascripts/groups/components/item_caret.vue
@@ -14,7 +14,7 @@ export default {
},
computed: {
iconClass() {
- return this.isGroupOpen ? 'angle-down' : 'angle-right';
+ return this.isGroupOpen ? 'chevron-down' : 'chevron-right';
},
},
};