@truedat/dq 4.47.1 → 4.47.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +10 -0
- package/package.json +5 -5
- package/src/api/queries.js +46 -0
- package/src/components/ImplementationCrumbs.js +4 -8
- package/src/components/ImplementationsRoutes.js +2 -3
- package/src/components/RuleImplementationResults.js +130 -67
- package/src/components/RuleResult.js +3 -17
- package/src/components/RuleResultDetails.js +2 -9
- package/src/components/RuleResultRemediations.js +8 -24
- package/src/components/RuleResultRow.js +89 -61
- package/src/components/RuleResultsRoutes.js +54 -42
- package/src/components/__tests__/RuleImplementationResults.spec.js +76 -12
- package/src/components/__tests__/RuleResultDetails.spec.js +32 -25
- package/src/components/__tests__/RuleResultRemediations.spec.js +12 -20
- package/src/components/__tests__/RuleResultRoutes.spec.js +75 -3
- package/src/components/__tests__/__snapshots__/RuleImplementationResults.spec.js.snap +204 -57
- package/src/components/__tests__/__snapshots__/RuleResultDetails.spec.js.snap +30 -10
- package/src/components/__tests__/__snapshots__/RuleResultRoutes.spec.js.snap +324 -1
- package/src/messages/en.js +9 -1
- package/src/messages/es.js +10 -5
- package/src/selectors/__tests__/getParsedEvents.spec.js +31 -0
- package/src/selectors/getParsedEvents.js +10 -0
|
@@ -1,66 +1,213 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
3
|
exports[`<RuleImplementationResults /> matches the latest snapshot 1`] = `
|
|
4
|
-
<
|
|
5
|
-
<
|
|
6
|
-
|
|
7
|
-
className="implementation-results small"
|
|
4
|
+
<div>
|
|
5
|
+
<table
|
|
6
|
+
class="ui table implementation-results small"
|
|
8
7
|
>
|
|
9
|
-
<
|
|
10
|
-
|
|
8
|
+
<thead
|
|
9
|
+
class=""
|
|
11
10
|
>
|
|
12
|
-
<
|
|
13
|
-
|
|
14
|
-
cellAs="td"
|
|
11
|
+
<tr
|
|
12
|
+
class=""
|
|
15
13
|
>
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
|
|
14
|
+
<th
|
|
15
|
+
class=""
|
|
16
|
+
>
|
|
17
|
+
ruleResult.props.date
|
|
18
|
+
</th>
|
|
19
|
+
<th
|
|
20
|
+
class=""
|
|
21
|
+
>
|
|
22
|
+
ruleResult.props.quality
|
|
23
|
+
</th>
|
|
24
|
+
<th
|
|
25
|
+
class=""
|
|
26
|
+
>
|
|
27
|
+
ruleResult.props.records
|
|
28
|
+
</th>
|
|
29
|
+
<th
|
|
30
|
+
class=""
|
|
31
|
+
>
|
|
32
|
+
ruleResult.props.errors
|
|
33
|
+
</th>
|
|
34
|
+
<th
|
|
35
|
+
class=""
|
|
19
36
|
/>
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
<TableHeaderCell
|
|
25
|
-
as="th"
|
|
26
|
-
content="foo"
|
|
27
|
-
key="0"
|
|
28
|
-
/>
|
|
29
|
-
<TableHeaderCell
|
|
30
|
-
as="th"
|
|
31
|
-
/>
|
|
32
|
-
</TableRow>
|
|
33
|
-
</TableHeader>
|
|
34
|
-
<TableBody
|
|
35
|
-
as="tbody"
|
|
37
|
+
</tr>
|
|
38
|
+
</thead>
|
|
39
|
+
<tbody
|
|
40
|
+
class=""
|
|
36
41
|
>
|
|
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
|
-
</
|
|
42
|
+
<tr
|
|
43
|
+
class=""
|
|
44
|
+
>
|
|
45
|
+
<td
|
|
46
|
+
class=""
|
|
47
|
+
colspan="8"
|
|
48
|
+
>
|
|
49
|
+
<a
|
|
50
|
+
class="ui active ribbon label"
|
|
51
|
+
>
|
|
52
|
+
ruleImplementations.props.version: undefined
|
|
53
|
+
</a>
|
|
54
|
+
</td>
|
|
55
|
+
</tr>
|
|
56
|
+
<tr
|
|
57
|
+
class="warning"
|
|
58
|
+
>
|
|
59
|
+
<td
|
|
60
|
+
class=""
|
|
61
|
+
>
|
|
62
|
+
<a
|
|
63
|
+
href="/implementations/1/results/66577"
|
|
64
|
+
>
|
|
65
|
+
<i
|
|
66
|
+
aria-hidden="true"
|
|
67
|
+
class="blue grid layout small circular inverted icon"
|
|
68
|
+
/>
|
|
69
|
+
</a>
|
|
70
|
+
</td>
|
|
71
|
+
<td
|
|
72
|
+
class=""
|
|
73
|
+
>
|
|
74
|
+
<i
|
|
75
|
+
aria-hidden="true"
|
|
76
|
+
class="green circle icon"
|
|
77
|
+
/>
|
|
78
|
+
93.54 %
|
|
79
|
+
</td>
|
|
80
|
+
<td
|
|
81
|
+
class=""
|
|
82
|
+
>
|
|
83
|
+
31
|
|
84
|
+
</td>
|
|
85
|
+
<td
|
|
86
|
+
class=""
|
|
87
|
+
>
|
|
88
|
+
2
|
|
89
|
+
</td>
|
|
90
|
+
</tr>
|
|
91
|
+
<tr
|
|
92
|
+
class="warning"
|
|
93
|
+
>
|
|
94
|
+
<td
|
|
95
|
+
class=""
|
|
96
|
+
>
|
|
97
|
+
<a
|
|
98
|
+
href="/implementations/1/results/66578"
|
|
99
|
+
>
|
|
100
|
+
<i
|
|
101
|
+
aria-hidden="true"
|
|
102
|
+
class="blue grid layout small circular inverted icon"
|
|
103
|
+
/>
|
|
104
|
+
</a>
|
|
105
|
+
</td>
|
|
106
|
+
<td
|
|
107
|
+
class=""
|
|
108
|
+
>
|
|
109
|
+
<i
|
|
110
|
+
aria-hidden="true"
|
|
111
|
+
class="green circle icon"
|
|
112
|
+
/>
|
|
113
|
+
93.54 %
|
|
114
|
+
</td>
|
|
115
|
+
<td
|
|
116
|
+
class=""
|
|
117
|
+
>
|
|
118
|
+
31
|
|
119
|
+
</td>
|
|
120
|
+
<td
|
|
121
|
+
class=""
|
|
122
|
+
>
|
|
123
|
+
2
|
|
124
|
+
</td>
|
|
125
|
+
</tr>
|
|
126
|
+
<tr
|
|
127
|
+
class=""
|
|
128
|
+
>
|
|
129
|
+
<td
|
|
130
|
+
class=""
|
|
131
|
+
colspan="8"
|
|
132
|
+
>
|
|
133
|
+
<a
|
|
134
|
+
class="ui ribbon label"
|
|
135
|
+
>
|
|
136
|
+
ruleImplementations.props.version: undefined
|
|
137
|
+
</a>
|
|
138
|
+
</td>
|
|
139
|
+
</tr>
|
|
140
|
+
<tr
|
|
141
|
+
class=""
|
|
142
|
+
>
|
|
143
|
+
<td
|
|
144
|
+
class=""
|
|
145
|
+
>
|
|
146
|
+
<a
|
|
147
|
+
href="/implementations/2/results/66579"
|
|
148
|
+
>
|
|
149
|
+
<i
|
|
150
|
+
aria-hidden="true"
|
|
151
|
+
class="blue grid layout small circular inverted icon"
|
|
152
|
+
/>
|
|
153
|
+
</a>
|
|
154
|
+
</td>
|
|
155
|
+
<td
|
|
156
|
+
class=""
|
|
157
|
+
>
|
|
158
|
+
<i
|
|
159
|
+
aria-hidden="true"
|
|
160
|
+
class="green circle icon"
|
|
161
|
+
/>
|
|
162
|
+
93.54 %
|
|
163
|
+
</td>
|
|
164
|
+
<td
|
|
165
|
+
class=""
|
|
166
|
+
>
|
|
167
|
+
31
|
|
168
|
+
</td>
|
|
169
|
+
<td
|
|
170
|
+
class=""
|
|
171
|
+
>
|
|
172
|
+
2
|
|
173
|
+
</td>
|
|
174
|
+
</tr>
|
|
175
|
+
<tr
|
|
176
|
+
class=""
|
|
177
|
+
>
|
|
178
|
+
<td
|
|
179
|
+
class=""
|
|
180
|
+
>
|
|
181
|
+
<a
|
|
182
|
+
href="/implementations/2/results/66580"
|
|
183
|
+
>
|
|
184
|
+
<i
|
|
185
|
+
aria-hidden="true"
|
|
186
|
+
class="blue grid layout small circular inverted icon"
|
|
187
|
+
/>
|
|
188
|
+
</a>
|
|
189
|
+
</td>
|
|
190
|
+
<td
|
|
191
|
+
class=""
|
|
192
|
+
>
|
|
193
|
+
<i
|
|
194
|
+
aria-hidden="true"
|
|
195
|
+
class="green circle icon"
|
|
196
|
+
/>
|
|
197
|
+
93.54 %
|
|
198
|
+
</td>
|
|
199
|
+
<td
|
|
200
|
+
class=""
|
|
201
|
+
>
|
|
202
|
+
31
|
|
203
|
+
</td>
|
|
204
|
+
<td
|
|
205
|
+
class=""
|
|
206
|
+
>
|
|
207
|
+
2
|
|
208
|
+
</td>
|
|
209
|
+
</tr>
|
|
210
|
+
</tbody>
|
|
211
|
+
</table>
|
|
212
|
+
</div>
|
|
66
213
|
`;
|
|
@@ -35,9 +35,9 @@ exports[`<RuleResultDetails> matches the latest snapshot 1`] = `
|
|
|
35
35
|
>
|
|
36
36
|
<i
|
|
37
37
|
aria-hidden="true"
|
|
38
|
-
class="
|
|
38
|
+
class="green circle icon"
|
|
39
39
|
/>
|
|
40
|
-
|
|
40
|
+
93.54 %
|
|
41
41
|
</td>
|
|
42
42
|
</tr>
|
|
43
43
|
<tr
|
|
@@ -50,7 +50,13 @@ exports[`<RuleResultDetails> matches the latest snapshot 1`] = `
|
|
|
50
50
|
</td>
|
|
51
51
|
<td
|
|
52
52
|
class=""
|
|
53
|
-
|
|
53
|
+
>
|
|
54
|
+
<time
|
|
55
|
+
datetime="1656028800000"
|
|
56
|
+
>
|
|
57
|
+
2022-06-24 00:00
|
|
58
|
+
</time>
|
|
59
|
+
</td>
|
|
54
60
|
</tr>
|
|
55
61
|
<tr
|
|
56
62
|
class=""
|
|
@@ -62,7 +68,9 @@ exports[`<RuleResultDetails> matches the latest snapshot 1`] = `
|
|
|
62
68
|
</td>
|
|
63
69
|
<td
|
|
64
70
|
class=""
|
|
65
|
-
|
|
71
|
+
>
|
|
72
|
+
31
|
|
73
|
+
</td>
|
|
66
74
|
</tr>
|
|
67
75
|
<tr
|
|
68
76
|
class=""
|
|
@@ -74,7 +82,9 @@ exports[`<RuleResultDetails> matches the latest snapshot 1`] = `
|
|
|
74
82
|
</td>
|
|
75
83
|
<td
|
|
76
84
|
class=""
|
|
77
|
-
|
|
85
|
+
>
|
|
86
|
+
2
|
|
87
|
+
</td>
|
|
78
88
|
</tr>
|
|
79
89
|
</tbody>
|
|
80
90
|
<thead
|
|
@@ -148,9 +158,9 @@ exports[`<RuleResultDetails> without details 1`] = `
|
|
|
148
158
|
>
|
|
149
159
|
<i
|
|
150
160
|
aria-hidden="true"
|
|
151
|
-
class="
|
|
161
|
+
class="green circle icon"
|
|
152
162
|
/>
|
|
153
|
-
|
|
163
|
+
93.54 %
|
|
154
164
|
</td>
|
|
155
165
|
</tr>
|
|
156
166
|
<tr
|
|
@@ -163,7 +173,13 @@ exports[`<RuleResultDetails> without details 1`] = `
|
|
|
163
173
|
</td>
|
|
164
174
|
<td
|
|
165
175
|
class=""
|
|
166
|
-
|
|
176
|
+
>
|
|
177
|
+
<time
|
|
178
|
+
datetime="1656028800000"
|
|
179
|
+
>
|
|
180
|
+
2022-06-24 00:00
|
|
181
|
+
</time>
|
|
182
|
+
</td>
|
|
167
183
|
</tr>
|
|
168
184
|
<tr
|
|
169
185
|
class=""
|
|
@@ -175,7 +191,9 @@ exports[`<RuleResultDetails> without details 1`] = `
|
|
|
175
191
|
</td>
|
|
176
192
|
<td
|
|
177
193
|
class=""
|
|
178
|
-
|
|
194
|
+
>
|
|
195
|
+
31
|
|
196
|
+
</td>
|
|
179
197
|
</tr>
|
|
180
198
|
<tr
|
|
181
199
|
class=""
|
|
@@ -187,7 +205,9 @@ exports[`<RuleResultDetails> without details 1`] = `
|
|
|
187
205
|
</td>
|
|
188
206
|
<td
|
|
189
207
|
class=""
|
|
190
|
-
|
|
208
|
+
>
|
|
209
|
+
2
|
|
210
|
+
</td>
|
|
191
211
|
</tr>
|
|
192
212
|
</tbody>
|
|
193
213
|
</table>
|
|
@@ -1,3 +1,326 @@
|
|
|
1
1
|
// Jest Snapshot v1, https://goo.gl/fbAQLP
|
|
2
2
|
|
|
3
|
-
exports[`<RuleResultsRoutes> matches the latest snapshot 1`] =
|
|
3
|
+
exports[`<RuleResultsRoutes> matches the latest loading snapshot 1`] = `
|
|
4
|
+
<div>
|
|
5
|
+
<div
|
|
6
|
+
class="ui active loader"
|
|
7
|
+
/>
|
|
8
|
+
</div>
|
|
9
|
+
`;
|
|
10
|
+
|
|
11
|
+
exports[`<RuleResultsRoutes> matches the latest success details route snapshot 1`] = `
|
|
12
|
+
<div>
|
|
13
|
+
<div
|
|
14
|
+
class="ui segment"
|
|
15
|
+
>
|
|
16
|
+
<div
|
|
17
|
+
class="ui breadcrumb"
|
|
18
|
+
>
|
|
19
|
+
<a
|
|
20
|
+
class="section"
|
|
21
|
+
href="/implementations"
|
|
22
|
+
>
|
|
23
|
+
Implementations
|
|
24
|
+
</a>
|
|
25
|
+
<i
|
|
26
|
+
aria-hidden="true"
|
|
27
|
+
class="right angle icon divider"
|
|
28
|
+
/>
|
|
29
|
+
<a
|
|
30
|
+
class="section"
|
|
31
|
+
href="/implementations/2"
|
|
32
|
+
>
|
|
33
|
+
mi implementación molona
|
|
34
|
+
</a>
|
|
35
|
+
<i
|
|
36
|
+
aria-hidden="true"
|
|
37
|
+
class="right angle icon divider"
|
|
38
|
+
/>
|
|
39
|
+
<div
|
|
40
|
+
class="active section"
|
|
41
|
+
>
|
|
42
|
+
<time
|
|
43
|
+
datetime="1656028800000"
|
|
44
|
+
>
|
|
45
|
+
2022-06-24 00:00
|
|
46
|
+
</time>
|
|
47
|
+
</div>
|
|
48
|
+
</div>
|
|
49
|
+
<h2
|
|
50
|
+
class="ui header"
|
|
51
|
+
>
|
|
52
|
+
<i
|
|
53
|
+
aria-hidden="true"
|
|
54
|
+
class="chart pie circular icon"
|
|
55
|
+
/>
|
|
56
|
+
<div
|
|
57
|
+
class="content"
|
|
58
|
+
>
|
|
59
|
+
Rule execution result
|
|
60
|
+
</div>
|
|
61
|
+
</h2>
|
|
62
|
+
<div
|
|
63
|
+
class="ui pointing secondary top attached tabular menu"
|
|
64
|
+
>
|
|
65
|
+
<a
|
|
66
|
+
class="active item"
|
|
67
|
+
href="/implementations/2/results/1"
|
|
68
|
+
>
|
|
69
|
+
Information
|
|
70
|
+
</a>
|
|
71
|
+
<a
|
|
72
|
+
class="item"
|
|
73
|
+
href="/implementations/2/results/1/segment_results"
|
|
74
|
+
>
|
|
75
|
+
Segments Results
|
|
76
|
+
</a>
|
|
77
|
+
<a
|
|
78
|
+
class="item"
|
|
79
|
+
href="/implementations/2/results/1/remediation_plan"
|
|
80
|
+
>
|
|
81
|
+
Remedy Plan
|
|
82
|
+
</a>
|
|
83
|
+
</div>
|
|
84
|
+
<table
|
|
85
|
+
class="ui table implementation-results medium"
|
|
86
|
+
>
|
|
87
|
+
<thead
|
|
88
|
+
class=""
|
|
89
|
+
>
|
|
90
|
+
<tr
|
|
91
|
+
class=""
|
|
92
|
+
>
|
|
93
|
+
<th
|
|
94
|
+
class=""
|
|
95
|
+
colspan="2"
|
|
96
|
+
>
|
|
97
|
+
Information
|
|
98
|
+
</th>
|
|
99
|
+
</tr>
|
|
100
|
+
</thead>
|
|
101
|
+
<tbody
|
|
102
|
+
class=""
|
|
103
|
+
>
|
|
104
|
+
<tr
|
|
105
|
+
class=""
|
|
106
|
+
>
|
|
107
|
+
<td
|
|
108
|
+
class=""
|
|
109
|
+
>
|
|
110
|
+
Quality
|
|
111
|
+
</td>
|
|
112
|
+
<td
|
|
113
|
+
class=""
|
|
114
|
+
>
|
|
115
|
+
<i
|
|
116
|
+
aria-hidden="true"
|
|
117
|
+
class="green circle icon"
|
|
118
|
+
/>
|
|
119
|
+
93.54 %
|
|
120
|
+
</td>
|
|
121
|
+
</tr>
|
|
122
|
+
<tr
|
|
123
|
+
class=""
|
|
124
|
+
>
|
|
125
|
+
<td
|
|
126
|
+
class=""
|
|
127
|
+
>
|
|
128
|
+
Date
|
|
129
|
+
</td>
|
|
130
|
+
<td
|
|
131
|
+
class=""
|
|
132
|
+
>
|
|
133
|
+
<time
|
|
134
|
+
datetime="1656028800000"
|
|
135
|
+
>
|
|
136
|
+
2022-06-24 00:00
|
|
137
|
+
</time>
|
|
138
|
+
</td>
|
|
139
|
+
</tr>
|
|
140
|
+
<tr
|
|
141
|
+
class=""
|
|
142
|
+
>
|
|
143
|
+
<td
|
|
144
|
+
class=""
|
|
145
|
+
>
|
|
146
|
+
Records
|
|
147
|
+
</td>
|
|
148
|
+
<td
|
|
149
|
+
class=""
|
|
150
|
+
>
|
|
151
|
+
31
|
|
152
|
+
</td>
|
|
153
|
+
</tr>
|
|
154
|
+
<tr
|
|
155
|
+
class=""
|
|
156
|
+
>
|
|
157
|
+
<td
|
|
158
|
+
class=""
|
|
159
|
+
>
|
|
160
|
+
Errors
|
|
161
|
+
</td>
|
|
162
|
+
<td
|
|
163
|
+
class=""
|
|
164
|
+
>
|
|
165
|
+
2
|
|
166
|
+
</td>
|
|
167
|
+
</tr>
|
|
168
|
+
</tbody>
|
|
169
|
+
</table>
|
|
170
|
+
</div>
|
|
171
|
+
</div>
|
|
172
|
+
`;
|
|
173
|
+
|
|
174
|
+
exports[`<RuleResultsRoutes> matches the latest success remediation route snapshot 1`] = `
|
|
175
|
+
<div>
|
|
176
|
+
<div
|
|
177
|
+
class="ui segment"
|
|
178
|
+
>
|
|
179
|
+
<div
|
|
180
|
+
class="ui breadcrumb"
|
|
181
|
+
>
|
|
182
|
+
<a
|
|
183
|
+
class="section"
|
|
184
|
+
href="/implementations"
|
|
185
|
+
>
|
|
186
|
+
Implementations
|
|
187
|
+
</a>
|
|
188
|
+
<i
|
|
189
|
+
aria-hidden="true"
|
|
190
|
+
class="right angle icon divider"
|
|
191
|
+
/>
|
|
192
|
+
<a
|
|
193
|
+
class="section"
|
|
194
|
+
href="/implementations/2"
|
|
195
|
+
>
|
|
196
|
+
mi implementación molona
|
|
197
|
+
</a>
|
|
198
|
+
<i
|
|
199
|
+
aria-hidden="true"
|
|
200
|
+
class="right angle icon divider"
|
|
201
|
+
/>
|
|
202
|
+
<div
|
|
203
|
+
class="active section"
|
|
204
|
+
>
|
|
205
|
+
<time
|
|
206
|
+
datetime="1656028800000"
|
|
207
|
+
>
|
|
208
|
+
2022-06-24 00:00
|
|
209
|
+
</time>
|
|
210
|
+
</div>
|
|
211
|
+
</div>
|
|
212
|
+
<h2
|
|
213
|
+
class="ui header"
|
|
214
|
+
>
|
|
215
|
+
<i
|
|
216
|
+
aria-hidden="true"
|
|
217
|
+
class="chart pie circular icon"
|
|
218
|
+
/>
|
|
219
|
+
<div
|
|
220
|
+
class="content"
|
|
221
|
+
>
|
|
222
|
+
Rule execution result
|
|
223
|
+
</div>
|
|
224
|
+
</h2>
|
|
225
|
+
<div
|
|
226
|
+
class="ui pointing secondary top attached tabular menu"
|
|
227
|
+
>
|
|
228
|
+
<a
|
|
229
|
+
class="item"
|
|
230
|
+
href="/implementations/2/results/1"
|
|
231
|
+
>
|
|
232
|
+
Information
|
|
233
|
+
</a>
|
|
234
|
+
<a
|
|
235
|
+
class="item"
|
|
236
|
+
href="/implementations/2/results/1/segment_results"
|
|
237
|
+
>
|
|
238
|
+
Segments Results
|
|
239
|
+
</a>
|
|
240
|
+
<a
|
|
241
|
+
class="active item"
|
|
242
|
+
href="/implementations/2/results/1/remediation_plan"
|
|
243
|
+
>
|
|
244
|
+
Remedy Plan
|
|
245
|
+
</a>
|
|
246
|
+
</div>
|
|
247
|
+
</div>
|
|
248
|
+
</div>
|
|
249
|
+
`;
|
|
250
|
+
|
|
251
|
+
exports[`<RuleResultsRoutes> matches the latest success segments route snapshot 1`] = `
|
|
252
|
+
<div>
|
|
253
|
+
<div
|
|
254
|
+
class="ui segment"
|
|
255
|
+
>
|
|
256
|
+
<div
|
|
257
|
+
class="ui breadcrumb"
|
|
258
|
+
>
|
|
259
|
+
<a
|
|
260
|
+
class="section"
|
|
261
|
+
href="/implementations"
|
|
262
|
+
>
|
|
263
|
+
Implementations
|
|
264
|
+
</a>
|
|
265
|
+
<i
|
|
266
|
+
aria-hidden="true"
|
|
267
|
+
class="right angle icon divider"
|
|
268
|
+
/>
|
|
269
|
+
<a
|
|
270
|
+
class="section"
|
|
271
|
+
href="/implementations/2"
|
|
272
|
+
>
|
|
273
|
+
mi implementación molona
|
|
274
|
+
</a>
|
|
275
|
+
<i
|
|
276
|
+
aria-hidden="true"
|
|
277
|
+
class="right angle icon divider"
|
|
278
|
+
/>
|
|
279
|
+
<div
|
|
280
|
+
class="active section"
|
|
281
|
+
>
|
|
282
|
+
<time
|
|
283
|
+
datetime="1656028800000"
|
|
284
|
+
>
|
|
285
|
+
2022-06-24 00:00
|
|
286
|
+
</time>
|
|
287
|
+
</div>
|
|
288
|
+
</div>
|
|
289
|
+
<h2
|
|
290
|
+
class="ui header"
|
|
291
|
+
>
|
|
292
|
+
<i
|
|
293
|
+
aria-hidden="true"
|
|
294
|
+
class="chart pie circular icon"
|
|
295
|
+
/>
|
|
296
|
+
<div
|
|
297
|
+
class="content"
|
|
298
|
+
>
|
|
299
|
+
Rule execution result
|
|
300
|
+
</div>
|
|
301
|
+
</h2>
|
|
302
|
+
<div
|
|
303
|
+
class="ui pointing secondary top attached tabular menu"
|
|
304
|
+
>
|
|
305
|
+
<a
|
|
306
|
+
class="item"
|
|
307
|
+
href="/implementations/2/results/1"
|
|
308
|
+
>
|
|
309
|
+
Information
|
|
310
|
+
</a>
|
|
311
|
+
<a
|
|
312
|
+
class="active item"
|
|
313
|
+
href="/implementations/2/results/1/segment_results"
|
|
314
|
+
>
|
|
315
|
+
Segments Results
|
|
316
|
+
</a>
|
|
317
|
+
<a
|
|
318
|
+
class="item"
|
|
319
|
+
href="/implementations/2/results/1/remediation_plan"
|
|
320
|
+
>
|
|
321
|
+
Remedy Plan
|
|
322
|
+
</a>
|
|
323
|
+
</div>
|
|
324
|
+
</div>
|
|
325
|
+
</div>
|
|
326
|
+
`;
|
package/src/messages/en.js
CHANGED
|
@@ -494,12 +494,20 @@ export default {
|
|
|
494
494
|
"ruleImplementations.actions.upload.tooltip": "Upload Implementations",
|
|
495
495
|
"ruleImplementations.actions.upload.confirmation.header":
|
|
496
496
|
"Confirm bulk upload",
|
|
497
|
-
"ruleImplementations.events.action_created": "Implementation created
|
|
497
|
+
"ruleImplementations.events.action_created": "Implementation created",
|
|
498
498
|
"ruleImplementations.events.action_changed": "Field {0} changed to {1}",
|
|
499
499
|
"ruleImplementations.events.action_deprecated": "Implementation deprecated",
|
|
500
500
|
"ruleImplementations.events.action_moved": "Implementation moved to rule: {0}",
|
|
501
501
|
"ruleImplementations.events.action_restored": "Implementation restored",
|
|
502
502
|
"ruleImplementations.events.action_updated": "Implementation updated",
|
|
503
|
+
|
|
504
|
+
"ruleImplementations.events.action_published": "Implementation published",
|
|
505
|
+
"ruleImplementations.events.action_pending_approval": "Approval requested",
|
|
506
|
+
"ruleImplementations.events.action_rejected": "Approval rejected",
|
|
507
|
+
"ruleImplementations.events.action_deprecated": "Implementation deleted",
|
|
508
|
+
"ruleImplementations.events.action_draft": "Implementation on draft status",
|
|
509
|
+
"ruleImplementations.events.action_versioned": "Implementation versioned",
|
|
510
|
+
|
|
503
511
|
"ruleImplementations.props.business_concept": "Concept",
|
|
504
512
|
"ruleImplementations.props.last_change_at": "Last change at",
|
|
505
513
|
"ruleImplementations.props.status": "Status",
|