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

add_context_commits_modal_spec.js.snap « __snapshots__ « components « add_context_commits_modal « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1eb9ccc9c6cee7be37302fa1f27f7fc2955720df (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`AddContextCommitsModal renders modal with 2 tabs 1`] = `
<gl-modal-stub
  body-class="add-review-item pt-0"
  cancel-variant="light"
  dismisslabel="Close"
  modalclass=""
  modalid="add-review-item"
  ok-disabled="true"
  ok-title="Save changes"
  scrollable="true"
  size="md"
  title="Add or remove previously merged commits"
  titletag="h4"
>
  <gl-tabs-stub
    contentclass="pt-0"
    theme="indigo"
    value="0"
  >
    <gl-tab-stub
      titlelinkclass=""
    >
       
      <div
        class="mt-2"
      >
        <gl-search-box-by-type-stub
          clearbuttontitle="Clear"
          placeholder="Search by commit title or SHA"
          value=""
        />
         
        <review-tab-container-stub
          commits=""
          emptylisttext="Your search didn't match any commits. Try a different query."
          loadingfailedtext="Unable to load commits. Try again later."
        />
      </div>
    </gl-tab-stub>
     
    <gl-tab-stub
      titlelinkclass=""
    >
       
      <review-tab-container-stub
        commits=""
        emptylisttext="Commits you select appear here. Go to the first tab and select commits to add to this merge request."
        loadingfailedtext="Unable to load commits. Try again later."
      />
    </gl-tab-stub>
  </gl-tabs-stub>
</gl-modal-stub>
`;