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

mr_widget_merge_help.js « 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: 2fecebce7a0f9db5b884c9ab508d54cc816e7e12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
export default {
  name: 'MRWidgetMergeHelp',
  props: {
    missingBranch: { type: String, required: false, default: '' },
  },
  template: `
    <section class="mr-widget-help">
      <template
        v-if="missingBranch">
        If the {{missingBranch}} branch exists in your local repository, you
      </template>
      <template v-else>
        You
      </template>
      can merge this merge request manually using the
      <a
        data-toggle="modal"
        href="#modal_merge_info">
        command line.
      </a>
    </section>
  `,
};