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>2020-09-18 18:09:22 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-09-18 18:09:22 +0300
commit80d252c8e25dc88023e750cf2a22be6186cfd6aa (patch)
treead932c5973af9081cbafb0dcbbd24a3a100105a6 /app/assets/javascripts/vue_shared/components/web_ide_link.vue
parentdc86d5615e92ad4dfad4e5b452e8623a552b308b (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/vue_shared/components/web_ide_link.vue')
-rw-r--r--app/assets/javascripts/vue_shared/components/web_ide_link.vue12
1 files changed, 10 insertions, 2 deletions
diff --git a/app/assets/javascripts/vue_shared/components/web_ide_link.vue b/app/assets/javascripts/vue_shared/components/web_ide_link.vue
index 8307c6d3b55..b9c25bdc2e8 100644
--- a/app/assets/javascripts/vue_shared/components/web_ide_link.vue
+++ b/app/assets/javascripts/vue_shared/components/web_ide_link.vue
@@ -15,7 +15,13 @@ export default {
props: {
webIdeUrl: {
type: String,
- required: true,
+ required: false,
+ default: '',
+ },
+ webIdeIsFork: {
+ type: Boolean,
+ required: false,
+ default: false,
},
needsToFork: {
type: Boolean,
@@ -61,9 +67,11 @@ export default {
? { href: '#modal-confirm-fork', handle: () => this.showModal('#modal-confirm-fork') }
: { href: this.webIdeUrl };
+ const text = this.webIdeIsFork ? __('Edit fork in Web IDE') : __('Web IDE');
+
return {
key: KEY_WEB_IDE,
- text: __('Web IDE'),
+ text,
secondaryText: __('Quickly and easily edit multiple files in your project.'),
tooltip: '',
attrs: {