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

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

exports[`self monitor component When the self monitor project has not been created default state to match the default snapshot 1`] = `
<section
  class="settings no-animate js-self-monitoring-settings"
>
  <div
    class="settings-header"
  >
    <h4
      class="js-section-header"
    >
      
      Self monitoring
    
    </h4>
     
    <gl-button-stub
      buttontextclasses=""
      category="primary"
      class="js-settings-toggle"
      icon=""
      size="medium"
      variant="default"
    >
      Expand
    </gl-button-stub>
     
    <p
      class="js-section-sub-header"
    >
      
      Activate or deactivate instance self monitoring.
      
      <gl-link-stub
        href="/help/administration/monitoring/gitlab_self_monitoring_project/index"
      >
        Learn more.
      </gl-link-stub>
    </p>
  </div>
   
  <div
    class="settings-content"
  >
    <form
      name="self-monitoring-form"
    >
      <p>
        Activate self monitoring to create a project to use to monitor the health of your instance.
      </p>
       
      <gl-form-group-stub
        labeldescription=""
        optionaltext="(optional)"
      >
        <gl-toggle-stub
          label="Self monitoring"
          labelposition="top"
        />
      </gl-form-group-stub>
    </form>
  </div>
   
  <gl-modal-stub
    cancel-title="Cancel"
    category="primary"
    dismisslabel="Close"
    modalclass=""
    modalid="delete-self-monitor-modal"
    ok-title="Delete self monitoring project"
    ok-variant="danger"
    size="md"
    title="Deactivate self monitoring?"
    titletag="h4"
  >
    <div>
      
      Deactivating self monitoring deletes the self monitoring project. Are you sure you want to deactivate self monitoring and delete the project?
    
    </div>
  </gl-modal-stub>
</section>
`;