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

_missing_branch.html.haml « open « widget « merge_requests « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9f076294939084fc0e0142017b06b4a0aa3fb08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- unless @merge_request.source_branch_exists?
  %h4
    = icon("exclamation-triangle")
    Source branch
    %span.label-branch= source_branch_with_namespace(@merge_request)
    does not exist
  %p
    Please restore the source branch or close this merge request and open a new merge request with a different source branch.
- else
  %h4
    = icon("exclamation-triangle")
    Target branch
    %span.label-branch= @merge_request.target_branch
    does not exist
  %p
    Please restore the target branch or use a different target branch.