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/token_access/components/outbound_token_access.vue')
-rw-r--r--app/assets/javascripts/token_access/components/outbound_token_access.vue10
1 files changed, 5 insertions, 5 deletions
diff --git a/app/assets/javascripts/token_access/components/outbound_token_access.vue b/app/assets/javascripts/token_access/components/outbound_token_access.vue
index 7e1e6cc445c..43aa9b94b3a 100644
--- a/app/assets/javascripts/token_access/components/outbound_token_access.vue
+++ b/app/assets/javascripts/token_access/components/outbound_token_access.vue
@@ -27,7 +27,7 @@ export default {
'CICD|Limit access %{italicStart}from%{italicEnd} this project (Deprecated)',
),
toggleHelpText: s__(
- `CICD|Prevent CI/CD job tokens from this project from being used to access other projects unless the other project is added to the allowlist. It is a security risk to disable this feature, because unauthorized projects might attempt to retrieve an active token and access the API. %{linkStart}Learn more.%{linkEnd}`,
+ `CICD|Prevent CI/CD job tokens from this project from being used to access other projects unless the other project is added to the allowlist. It is a security risk to disable this feature, because unauthorized projects might attempt to retrieve an active token and access the API. %{linkStart}Learn more%{linkEnd}.`,
),
cardHeaderTitle: s__('CICD|Add an existing project to the scope'),
settingDisabledMessage: s__(
@@ -258,12 +258,12 @@ export default {
<template #help>
<gl-sprintf :message="$options.i18n.toggleHelpText">
<template #link="{ content }">
- <gl-link :href="ciJobTokenHelpPage" class="inline-link" target="_blank">
- {{ content }}
- </gl-link>
- <strong>{{ $options.i18n.disableToggleWarning }} </strong>
+ <gl-link :href="ciJobTokenHelpPage" class="inline-link" target="_blank">{{
+ content
+ }}</gl-link>
</template>
</gl-sprintf>
+ <strong>{{ $options.i18n.disableToggleWarning }} </strong>
</template>
</gl-toggle>