diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-06-15 15:08:20 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-06-15 15:08:20 +0000 |
commit | 4774fa00b74a9248b2d14fc424a8c2f1abb0a0de (patch) | |
tree | 1fe6da0110394a038cdd0c7ddb2b7bd2c528ff01 /app/assets/javascripts/groups | |
parent | 67441623767b3084d594288408bb078b2eb9f83e (diff) | |
download | gitlab-ce-4774fa00b74a9248b2d14fc424a8c2f1abb0a0de.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/groups')
-rw-r--r-- | app/assets/javascripts/groups/components/group_item.vue | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/app/assets/javascripts/groups/components/group_item.vue b/app/assets/javascripts/groups/components/group_item.vue index 0fb06dab635..6b9748bb725 100644 --- a/app/assets/javascripts/groups/components/group_item.vue +++ b/app/assets/javascripts/groups/components/group_item.vue @@ -12,6 +12,8 @@ import itemStats from './item_stats.vue'; import itemStatsValue from './item_stats_value.vue'; import itemActions from './item_actions.vue'; +import { showLearnGitLabGroupItemPopover } from '~/onboarding_issues'; + export default { directives: { tooltip, @@ -73,6 +75,11 @@ export default { return GROUP_VISIBILITY_TYPE[this.group.visibility]; }, }, + mounted() { + if (this.group.name === 'Learn GitLab') { + showLearnGitLabGroupItemPopover(this.group.id); + } + }, methods: { onClickRowGroup(e) { const NO_EXPAND_CLS = 'no-expand'; |