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>2022-06-09 21:08:13 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-06-09 21:08:13 +0300
commitf8b0e661f885d8d7df2414eaf4a465df0133a626 (patch)
tree3e10888fc084e5f67dee62c5ee25db5d1c77440d /app/assets/javascripts/pipelines
parentd2675fa4de909714fcc6dc1bdd7bee9ce5e3af34 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'app/assets/javascripts/pipelines')
-rw-r--r--app/assets/javascripts/pipelines/components/pipelines_list/pipeline_stage.vue10
1 files changed, 3 insertions, 7 deletions
diff --git a/app/assets/javascripts/pipelines/components/pipelines_list/pipeline_stage.vue b/app/assets/javascripts/pipelines/components/pipelines_list/pipeline_stage.vue
index 43e31037c36..d7e55d36ff6 100644
--- a/app/assets/javascripts/pipelines/components/pipelines_list/pipeline_stage.vue
+++ b/app/assets/javascripts/pipelines/components/pipelines_list/pipeline_stage.vue
@@ -23,8 +23,7 @@ import JobItem from './job_item.vue';
export default {
i18n: {
stage: __('Stage:'),
- loadingTextLineOne: __('Loading, please wait.'),
- loadingTextLineTwo: __('Cue dramatic background music...'),
+ loadingText: __('Loading, please wait.'),
},
dropdownPopperOpts: {
placement: 'bottom',
@@ -138,14 +137,11 @@ export default {
</template>
<div
v-if="isLoading"
- class="gl-display-flex gl-justify-content-center gl-p-3"
+ class="gl-display-flex gl-justify-content-center gl-p-2"
data-testid="pipeline-stage-loading-state"
>
<gl-loading-icon size="sm" class="gl-mr-3" />
- <div>
- <p class="gl-mb-0">{{ $options.i18n.loadingTextLineOne }}</p>
- <p class="gl-mb-0">{{ $options.i18n.loadingTextLineTwo }}</p>
- </div>
+ <p class="gl-mb-0">{{ $options.i18n.loadingText }}</p>
</div>
<ul
v-else