debian-mirror-gitlab/app/assets/javascripts/vue_merge_request_widget/components/mr_widget_merge_help.vue
2019-10-12 21:52:04 +05:30

43 lines
987 B
Vue

<script>
import { sprintf, s__ } from '~/locale';
export default {
name: 'MRWidgetMergeHelp',
props: {
missingBranch: {
type: String,
required: false,
default: '',
},
},
computed: {
missingBranchInfo() {
return sprintf(
s__(
'mrWidget|If the %{branch} branch exists in your local repository, you can merge this merge request manually using the',
),
{ branch: this.missingBranch },
);
},
},
};
</script>
<template>
<section class="mr-widget-help font-italic">
<template v-if="missingBranch">
{{ missingBranchInfo }}
</template>
<template v-else>
{{ s__('mrWidget|You can merge this merge request manually using the') }}
</template>
<button
type="button"
class="btn-link btn-blank js-open-modal-help"
data-toggle="modal"
data-target="#modal_merge_info"
>
{{ s__('mrWidget|command line') }}
</button>
</section>
</template>