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

info_popover_spec.js.snap « __snapshots__ « components « issuable_type_selector « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 196fbb8a64333f1850323f5ea868ff33c9c0b641 (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
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Issuable type info popover renders 1`] = `
<span
  id="popovercontainer"
>
  <gl-icon-stub
    class="gl-ml-5 gl-text-gray-500"
    id="issuable-type-info"
    name="question-o"
    size="16"
  />
   
  <gl-popover-stub
    container="popovercontainer"
    cssclasses=""
    target="issuable-type-info"
    title="Issue types"
    triggers="focus hover"
  >
    <ul
      class="gl-list-style-none gl-p-0 gl-m-0"
    >
      <li
        class="gl-mb-3"
      >
        <div
          class="gl-font-weight-bold"
        >
          Issue
        </div>
         
        <span>
          For general work
        </span>
      </li>
       
      <li>
        <div
          class="gl-font-weight-bold"
        >
          Incident
        </div>
         
        <span>
          For investigating IT service disruptions or outages
        </span>
      </li>
    </ul>
  </gl-popover-stub>
</span>
`;