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

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

exports[`Registry Group Empty state to match the default snapshot 1`] = `
<div
  class="row container-message empty-state"
>
  <div
    class="col-12"
  >
    <div
      class="svg-250 svg-content"
    >
      <img
        alt="There are no container images available in this group"
        class=""
        src="imageUrl"
      />
    </div>
  </div>
   
  <div
    class="col-12"
  >
    <div
      class="text-content"
    >
      <h4
        class="center"
        style=""
      >
        There are no container images available in this group
      </h4>
       
      <p
        class="center"
        style=""
      >
        <p
          class="js-no-container-images-text"
        >
          With the Container Registry, every project can have its own space to store its Docker images. Push at least one Docker image in one of this group's projects in order to show up here. 
          <a
            href="help"
            target="_blank"
          >
            More Information
          </a>
        </p>
      </p>
       
      <div
        class="text-center"
      >
        <!---->
         
        <!---->
      </div>
    </div>
  </div>
</div>
`;