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

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

exports[`GroupItemName template matches the snapshot 1`] = `
<div
  class="gl-align-items-center gl-display-flex"
>
  <gl-icon-stub
    class="gl-mr-3"
    name="folder-o"
    size="16"
  />
  <div
    class="gl-display-none gl-flex-shrink-0 gl-mr-3 gl-sm-display-flex"
  >
    <gl-avatar-stub
      alt="avatar"
      entityid="0"
      entityname="Gitlab Org"
      shape="rect"
      size="32"
      src="avatar.png"
    />
  </div>
  <div>
    <span
      class="gl-font-weight-bold gl-mr-3 gl-text-gray-900!"
    >
      Gitlab Org
    </span>
    <div>
      <p
        class="gl-mb-0 gl-mt-2! gl-text-gray-600"
      >
        Open source software to collaborate on code
      </p>
    </div>
  </div>
</div>
`;