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:
Diffstat (limited to 'app/assets/javascripts/related_issues/components/related_issues_block.vue')
-rw-r--r--app/assets/javascripts/related_issues/components/related_issues_block.vue25
1 files changed, 11 insertions, 14 deletions
diff --git a/app/assets/javascripts/related_issues/components/related_issues_block.vue b/app/assets/javascripts/related_issues/components/related_issues_block.vue
index 1044d25c1a3..f1b6b335509 100644
--- a/app/assets/javascripts/related_issues/components/related_issues_block.vue
+++ b/app/assets/javascripts/related_issues/components/related_issues_block.vue
@@ -278,20 +278,17 @@ export default {
@saveReorder="$emit('saveReorder', $event)"
/>
</template>
- <div v-if="!shouldShowTokenBody && !isFormVisible">
- <p class="gl-new-card-empty">
- {{ emptyStateMessage }}
- <gl-link
- v-if="hasHelpPath"
- :href="helpPath"
- target="_blank"
- data-testid="help-link"
- :aria-label="helpLinkText"
- >
- {{ __('Learn more.') }}
- </gl-link>
- </p>
- </div>
+ <p v-if="!shouldShowTokenBody && !isFormVisible" class="gl-new-card-empty">
+ {{ emptyStateMessage }}
+ <gl-link
+ v-if="hasHelpPath"
+ :href="helpPath"
+ data-testid="help-link"
+ :aria-label="helpLinkText"
+ >
+ {{ __('Learn more.') }}
+ </gl-link>
+ </p>
</div>
</gl-card>
</div>