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>2023-10-12 12:09:42 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-10-12 12:09:42 +0300
commit7b3a8386ceeeb87b6e7e2e5ac00365f0d063cbb8 (patch)
treeae4cab5d1cffaaa70cf55bb52b7ae181847510ae /app/assets
parentacc3d48da4fa0dcd2f2c8500c7cb7cc5c957300f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets')
-rw-r--r--app/assets/javascripts/notes/components/notes_activity_header.vue6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/assets/javascripts/notes/components/notes_activity_header.vue b/app/assets/javascripts/notes/components/notes_activity_header.vue
index 4d1cda51ba9..ce642733396 100644
--- a/app/assets/javascripts/notes/components/notes_activity_header.vue
+++ b/app/assets/javascripts/notes/components/notes_activity_header.vue
@@ -38,7 +38,11 @@ export default {
},
computed: {
showAiActions() {
- return this.resourceGlobalId && this.glFeatures.summarizeComments;
+ return (
+ this.resourceGlobalId &&
+ this.glFeatures.openaiExperimentation &&
+ this.glFeatures.summarizeNotes
+ );
},
},
};