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

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

exports[`Issue Warning Component when issue is locked but not confidential renders information about locked issue 1`] = `
<span>
  
    This issue is locked.
    Only project members can comment.
    
  <gl-link-stub
    href="locked-path"
    target="_blank"
  >
    Learn more.
  </gl-link-stub>
</span>
`;

exports[`Issue Warning Component when noteable is confidential but not locked renders information about confidential issue 1`] = `
<span>
  
    This is a confidential issue.
    People without permission will never get a notification.
    
  <gl-link-stub
    href="confidential-path"
    target="_blank"
  >
    Learn more.
  </gl-link-stub>
</span>
`;

exports[`Issue Warning Component when noteable is locked and confidential renders information about locked and confidential noteable 1`] = `
<span>
  <span>
    This issue is 
    <gl-link-stub
      href=""
      target="_blank"
    >
      confidential
    </gl-link-stub>
     and 
    <gl-link-stub
      href=""
      target="_blank"
    >
      locked
    </gl-link-stub>
    .
  </span>
  
    People without permission will never get a notification and won't be able to comment.
  
</span>
`;