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-08-18 18:09:32 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-08-18 18:09:32 +0300
commit133b8a64b6d5b57f3cd753f55059b2b90721695e (patch)
tree6c41f2a0248dafc80272017ea90de3a6af214a07 /app/assets/javascripts/deploy_tokens
parent10adf63c4b76e665a706a81fba9405de0e27120a (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/deploy_tokens')
-rw-r--r--app/assets/javascripts/deploy_tokens/components/new_deploy_token.vue10
1 files changed, 8 insertions, 2 deletions
diff --git a/app/assets/javascripts/deploy_tokens/components/new_deploy_token.vue b/app/assets/javascripts/deploy_tokens/components/new_deploy_token.vue
index a56fce98f85..ccf4b064fa4 100644
--- a/app/assets/javascripts/deploy_tokens/components/new_deploy_token.vue
+++ b/app/assets/javascripts/deploy_tokens/components/new_deploy_token.vue
@@ -249,7 +249,12 @@ export default {
:description="$options.translations.addTokenNameDescription"
label-for="deploy_token_name"
>
- <gl-form-input id="deploy_token_name" v-model="name" name="deploy_token_name" />
+ <gl-form-input
+ id="deploy_token_name"
+ v-model="name"
+ class="gl-form-input-xl"
+ name="deploy_token_name"
+ />
</gl-form-group>
<gl-form-group
:label="$options.translations.addTokenExpiryLabel"
@@ -258,6 +263,7 @@ export default {
>
<gl-form-input
id="deploy_token_expires_at"
+ class="gl-form-input-xl"
name="deploy_token_expires_at"
:value="formattedExpiryDate"
data-qa-selector="deploy_token_expires_at_field"
@@ -277,7 +283,7 @@ export default {
</template>
</gl-sprintf>
</template>
- <gl-form-input id="deploy_token_username" v-model="username" />
+ <gl-form-input id="deploy_token_username" v-model="username" class="gl-form-input-xl" />
</gl-form-group>
<gl-form-group
:label="$options.translations.addTokenScopesLabel"