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-10 21:09:28 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-10 21:09:28 +0300
commit2f7719abdfde4cb50ed05346b98bac26ea06a8de (patch)
tree71bc9a5cde931b50f38f2e2fe76cc67e1181e3d6 /app/assets/javascripts/environments
parent37140013714814d8ffe662a372697c56eea2fde0 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/environments')
-rw-r--r--app/assets/javascripts/environments/components/deploy_board_wrapper.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/assets/javascripts/environments/components/deploy_board_wrapper.vue b/app/assets/javascripts/environments/components/deploy_board_wrapper.vue
index d9d77088ad3..d1132bc6e24 100644
--- a/app/assets/javascripts/environments/components/deploy_board_wrapper.vue
+++ b/app/assets/javascripts/environments/components/deploy_board_wrapper.vue
@@ -25,7 +25,7 @@ export default {
},
computed: {
icon() {
- return this.visible ? 'angle-down' : 'angle-right';
+ return this.visible ? 'chevron-lg-down' : 'chevron-lg-right';
},
label() {
return this.visible ? this.$options.i18n.collapse : this.$options.i18n.expand;