Improve VSD and AI analytics dashboards panel titles

What does this MR do and why?

Minor updates to the panel titles used on the Value Stream Dashboard and the AI Impact dashboard to improve consistency

MR acceptance checklist

Please evaluate this MR against the MR acceptance checklist. It helps you analyze changes to reduce risks in quality, performance, reliability, security, and maintainability.

Screenshots or screen recordings

Value streams dashboard

Before After
Screenshot_2024-11-12_at_10.43.07_AM Screenshot_2024-11-12_at_10.43.52_AM
Screenshot_2024-11-12_at_10.43.11_AM Screenshot_2024-11-12_at_10.44.00_AM
Screenshot_2024-11-12_at_10.43.17_AM Screenshot_2024-11-12_at_10.44.09_AM
Screenshot_2024-11-12_at_10.43.22_AM Screenshot_2024-11-12_at_10.44.15_AM
Screenshot_2024-11-12_at_10.43.31_AM Screenshot_2024-11-12_at_10.44.20_AM

AI Impact dashboard

Before After
Screenshot_2024-11-12_at_10.50.51_AM Screenshot_2024-11-12_at_10.49.09_AM
Screenshot_2024-11-12_at_10.50.57_AM Screenshot_2024-11-12_at_10.49.14_AM

How to set up and validate locally

  • Make sure you are using GitLab Ultimate
  • Configure your GDK to use ClickHouse
  • Mock permissions with this patch to make the AI impact dashboard accessible
diff --git a/ee/app/models/ee/user.rb b/ee/app/models/ee/user.rb
index d5064e5525d1..e2c4916b3679 100644
--- a/ee/app/models/ee/user.rb
+++ b/ee/app/models/ee/user.rb
@@ -476,6 +476,7 @@ def using_gitlab_com_seat?(namespace)
     end
 
     def assigned_to_duo_enterprise?(container)
+      return true
       namespace = ::Gitlab::Saas.feature_available?(:gitlab_duo_saas_only) ? container.root_ancestor : nil
 
       GitlabSubscriptions::AddOnPurchase
@@ -486,6 +487,7 @@ def assigned_to_duo_enterprise?(container)
     end
 
     def assigned_to_duo_pro?(container)
+      return true
       namespace = ::Gitlab::Saas.feature_available?(:gitlab_duo_saas_only) ? container.root_ancestor : nil
 
       GitlabSubscriptions::AddOnPurchase

Related to #470881 (closed)

Edited by Alex Pennells

Merge request reports

Loading