Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mr_widget_pipeline_blocked.vue « states « components « vue_merge_request_widget « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13920daca15f5f92ddab48d7774fa237532b106f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<script>
import glFeatureFlagMixin from '~/vue_shared/mixins/gl_feature_flags_mixin';
import StatusIcon from '../mr_widget_status_icon.vue';

export default {
  name: 'MRWidgetPipelineBlocked',
  components: {
    StatusIcon,
  },
  mixins: [glFeatureFlagMixin()],
};
</script>
<template>
  <div class="mr-widget-body media">
    <status-icon status="failed" />
    <div class="media-body space-children">
      <span class="gl-font-weight-bold">
        {{
          s__(
            `mrWidget|Merge blocked: pipeline must succeed. It's waiting for a manual action to continue.`,
          )
        }}
      </span>
    </div>
  </div>
</template>