@truedat/audit 4.45.5 → 4.45.8
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
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/audit",
|
|
3
|
-
"version": "4.45.
|
|
3
|
+
"version": "4.45.8",
|
|
4
4
|
"description": "Truedat Web Audit Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@testing-library/jest-dom": "^5.16.4",
|
|
35
35
|
"@testing-library/react": "^12.0.0",
|
|
36
36
|
"@testing-library/user-event": "^13.2.1",
|
|
37
|
-
"@truedat/test": "4.45.
|
|
37
|
+
"@truedat/test": "4.45.8",
|
|
38
38
|
"babel-jest": "^28.1.0",
|
|
39
39
|
"babel-plugin-dynamic-import-node": "^2.3.3",
|
|
40
40
|
"babel-plugin-lodash": "^3.3.4",
|
|
@@ -85,8 +85,8 @@
|
|
|
85
85
|
]
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@truedat/auth": "4.45.
|
|
89
|
-
"@truedat/core": "4.45.
|
|
88
|
+
"@truedat/auth": "4.45.8",
|
|
89
|
+
"@truedat/core": "4.45.8",
|
|
90
90
|
"axios": "^0.19.2",
|
|
91
91
|
"path-to-regexp": "^1.7.0",
|
|
92
92
|
"prop-types": "^15.8.1",
|
|
@@ -107,5 +107,5 @@
|
|
|
107
107
|
"react-dom": ">= 16.8.6 < 17",
|
|
108
108
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
109
109
|
},
|
|
110
|
-
"gitHead": "
|
|
110
|
+
"gitHead": "1b5acb1dc1233181e5a47353fd8a5da1424e7a47"
|
|
111
111
|
}
|
|
@@ -32,14 +32,14 @@ export const NotificationsMenu = ({
|
|
|
32
32
|
{unread_counter}
|
|
33
33
|
</Label>
|
|
34
34
|
)}
|
|
35
|
-
<Dropdown item icon="bell" onOpen={fetchNotifications} scrolling
|
|
35
|
+
<Dropdown item icon="bell" onOpen={fetchNotifications} scrolling>
|
|
36
36
|
<Dropdown.Menu direction="left" className="notifications-dropdown">
|
|
37
37
|
<Dropdown.Header>
|
|
38
38
|
<FormattedMessage id="navigation.notifications" />
|
|
39
39
|
</Dropdown.Header>
|
|
40
40
|
<Dropdown.Divider />
|
|
41
41
|
{notificationsLoading ? (
|
|
42
|
-
<Dropdown.Item className="notifications-loading" disabled
|
|
42
|
+
<Dropdown.Item className="notifications-loading" disabled>
|
|
43
43
|
<Loading />
|
|
44
44
|
</Dropdown.Item>
|
|
45
45
|
) : notifications && notifications.length > 0 ? (
|
|
@@ -72,7 +72,7 @@ export const NotificationsMenu = ({
|
|
|
72
72
|
))
|
|
73
73
|
)
|
|
74
74
|
) : (
|
|
75
|
-
<Dropdown.Item disabled
|
|
75
|
+
<Dropdown.Item disabled>
|
|
76
76
|
<FormattedMessage id="navigation.notifications.empty" />
|
|
77
77
|
</Dropdown.Item>
|
|
78
78
|
)}
|
|
@@ -469,7 +469,10 @@ export const SubscriptionForm = ({
|
|
|
469
469
|
value: name,
|
|
470
470
|
text: (
|
|
471
471
|
<label>
|
|
472
|
-
<Icon
|
|
472
|
+
<Icon
|
|
473
|
+
name={name == "error" ? "warning circle" : "circle"}
|
|
474
|
+
color={color}
|
|
475
|
+
/>
|
|
473
476
|
{formatMessage({ id: `subscriptions.status.${name}` })}
|
|
474
477
|
</label>
|
|
475
478
|
),
|
package/src/messages/en.js
CHANGED
|
@@ -46,6 +46,7 @@ export default {
|
|
|
46
46
|
"subscriptions.status.error": "< Threshold",
|
|
47
47
|
"subscriptions.status.success": "Goal",
|
|
48
48
|
"subscriptions.status.warn": "< Goal",
|
|
49
|
+
"subscriptions.status.error": "Failed",
|
|
49
50
|
|
|
50
51
|
"subscriptions.status.job_status_started": "Started jobs",
|
|
51
52
|
"subscriptions.status.job_status_pending": "Pending jobs",
|
package/src/messages/es.js
CHANGED
|
@@ -46,6 +46,7 @@ export default {
|
|
|
46
46
|
"subscriptions.status.error": "< Umbral",
|
|
47
47
|
"subscriptions.status.success": "Objetivo",
|
|
48
48
|
"subscriptions.status.warn": "< Objetivo",
|
|
49
|
+
"subscriptions.status.error": "Fallida",
|
|
49
50
|
|
|
50
51
|
"subscriptions.status.job_status_started": "Jobs iniciados",
|
|
51
52
|
"subscriptions.status.job_status_pending": "Jobs pendientes",
|