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-07-12 15:11:02 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-07-12 15:11:02 +0300
commit3d6dddf134ebb82f2a9894cad738c84ff9d6e723 (patch)
tree64e9b716ec79c086c10ef88f36daac05abb75437 /app/assets/javascripts/projects
parent447c1bba679be70f9c311326ca03923c6988f127 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/projects')
-rw-r--r--app/assets/javascripts/projects/compare/constants.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/javascripts/projects/compare/constants.js b/app/assets/javascripts/projects/compare/constants.js
index f689d543455..2f07cf57521 100644
--- a/app/assets/javascripts/projects/compare/constants.js
+++ b/app/assets/javascripts/projects/compare/constants.js
@@ -1,4 +1,5 @@
import { __, s__ } from '~/locale';
+import { DOCS_URL_IN_EE_DIR } from 'jh_else_ce/lib/utils/url_utility';
export const COMPARE_OPTIONS_INPUT_NAME = 'straight';
export const COMPARE_OPTIONS = [
@@ -21,5 +22,4 @@ export const I18N = {
openMr: s__('CompareRevisions|Create merge request'),
};
-export const COMPARE_REVISIONS_DOCS_URL =
- 'https://docs.gitlab.com/ee/user/project/repository/branches/#compare-branches';
+export const COMPARE_REVISIONS_DOCS_URL = `${DOCS_URL_IN_EE_DIR}/user/project/repository/branches/#compare-branches`;