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-11-23 21:09:48 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-11-23 21:09:48 +0300
commit8ca26a8db290ec5eca22f8eecbd0b25d106cb89f (patch)
treed3d6ac96070f0bd9cb2fc71ee49cc2dffd394300 /app/assets/javascripts/super_sidebar/components/help_center.vue
parent61cb988554d7d554f0e9727fc73acc9acba5ea8f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/super_sidebar/components/help_center.vue')
-rw-r--r--app/assets/javascripts/super_sidebar/components/help_center.vue5
1 files changed, 1 insertions, 4 deletions
diff --git a/app/assets/javascripts/super_sidebar/components/help_center.vue b/app/assets/javascripts/super_sidebar/components/help_center.vue
index 752f077ca02..e354d82b76a 100644
--- a/app/assets/javascripts/super_sidebar/components/help_center.vue
+++ b/app/assets/javascripts/super_sidebar/components/help_center.vue
@@ -14,9 +14,6 @@ import { STORAGE_KEY } from '~/whats_new/utils/notification';
import Tracking from '~/tracking';
import { DROPDOWN_Y_OFFSET, HELP_MENU_TRACKING_DEFAULTS, helpCenterState } from '../constants';
-// Left offset required for the dropdown to be aligned with the super sidebar
-const DROPDOWN_X_OFFSET = -4;
-
export default {
components: {
GlBadge,
@@ -204,7 +201,7 @@ export default {
});
},
},
- dropdownOffset: { mainAxis: DROPDOWN_Y_OFFSET, crossAxis: DROPDOWN_X_OFFSET },
+ dropdownOffset: { mainAxis: DROPDOWN_Y_OFFSET },
};
</script>