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

list_item_spec.js.snap « __snapshots__ « components « comment_templates « frontend « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8cad483e27e24832a11eec8a6c1ff542ecefa545 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`Comment templates list item component renders list item 1`] = `
<li
  class="gl-pt-4 gl-pb-5 gl-border-b"
>
  <div
    class="gl-display-flex gl-align-items-center"
  >
    <h6
      class="gl-mr-3 gl-my-0"
      data-testid="comment-template-name"
    >
      test
    </h6>
     
    <div
      class="gl-ml-auto"
    >
      <div
        class="gl-new-dropdown gl-disclosure-dropdown"
      >
        <button
          aria-controls="base-dropdown-7"
          aria-labelledby="actions-toggle-3"
          class="btn btn-default btn-md gl-button btn-default-tertiary gl-new-dropdown-toggle gl-new-dropdown-icon-only gl-new-dropdown-toggle-no-caret"
          data-testid="base-dropdown-toggle"
          id="actions-toggle-3"
          listeners="[object Object]"
          type="button"
        >
          <!---->
           
          <svg
            aria-hidden="true"
            class="gl-button-icon gl-icon s16"
            data-testid="ellipsis_v-icon"
            role="img"
          >
            <use
              href="file-mock#ellipsis_v"
            />
          </svg>
            
          <span
            class="gl-button-text"
          >
            <span
              class="gl-new-dropdown-button-text gl-sr-only"
            >
              
        Comment template actions
      
            </span>
             
            <!---->
          </span>
        </button>
         
        <div
          class="gl-new-dropdown-panel gl-w-31!"
          data-testid="base-dropdown-menu"
          id="base-dropdown-7"
        >
          <div
            class="gl-new-dropdown-inner"
          >
              
            <ul
              aria-labelledby="actions-toggle-3"
              class="gl-new-dropdown-contents"
              data-testid="disclosure-content"
              id="disclosure-4"
              tabindex="-1"
            >
              <li
                class="gl-new-dropdown-item"
                data-testid="disclosure-dropdown-item"
                tabindex="0"
              >
                <button
                  class="gl-new-dropdown-item-content"
                  data-testid="comment-template-edit-btn"
                  tabindex="-1"
                  type="button"
                >
                  <span
                    class="gl-new-dropdown-item-text-wrapper"
                  >
                    
          Edit
        
                  </span>
                </button>
              </li>
              <li
                class="gl-new-dropdown-item"
                data-testid="disclosure-dropdown-item"
                tabindex="0"
              >
                <button
                  class="gl-new-dropdown-item-content gl-text-red-500!"
                  data-testid="comment-template-delete-btn"
                  tabindex="-1"
                  type="button"
                >
                  <span
                    class="gl-new-dropdown-item-text-wrapper"
                  >
                    
          Delete
        
                  </span>
                </button>
              </li>
            </ul>
             
          </div>
        </div>
      </div>
       
      <div
        class="gl-tooltip"
      >
        
        Comment template actions
      
      </div>
    </div>
  </div>
   
  <div
    class="gl-mt-3 gl-font-monospace"
  >
    /assign_reviewer
  </div>
   
  <!---->
</li>
`;