@truedat/core 4.51.0 → 4.51.1
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 +7 -0
- package/package.json +2 -2
- package/src/components/QualityMenu.js +7 -2
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "4.51.
|
|
3
|
+
"version": "4.51.1",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -112,5 +112,5 @@
|
|
|
112
112
|
"react-dom": ">= 16.8.6 < 17",
|
|
113
113
|
"semantic-ui-react": ">= 0.88.2 < 2.1"
|
|
114
114
|
},
|
|
115
|
-
"gitHead": "
|
|
115
|
+
"gitHead": "2f5c5f130f1fd84a103c8a97096eb2c191d06446"
|
|
116
116
|
}
|
|
@@ -21,7 +21,11 @@ export const ITEMS = [
|
|
|
21
21
|
routes: [IMPLEMENTATIONS_PENDING],
|
|
22
22
|
groups: ["quality_implementation_workflow_management"],
|
|
23
23
|
},
|
|
24
|
-
{
|
|
24
|
+
{
|
|
25
|
+
name: "executions",
|
|
26
|
+
routes: [EXECUTION_GROUPS],
|
|
27
|
+
groups: ["quality_implementation_additional_actions"],
|
|
28
|
+
},
|
|
25
29
|
{
|
|
26
30
|
name: "quality_dashboard",
|
|
27
31
|
routes: [QUALITY_DASHBOARD],
|
|
@@ -32,7 +36,8 @@ export const ITEMS = [
|
|
|
32
36
|
export const QualityMenu = ({ dashboardConfig }) => {
|
|
33
37
|
const authorized = useAuthorized(
|
|
34
38
|
"quality",
|
|
35
|
-
"quality_implementation_workflow_management"
|
|
39
|
+
"quality_implementation_workflow_management",
|
|
40
|
+
"quality_implementation_additional_actions"
|
|
36
41
|
);
|
|
37
42
|
|
|
38
43
|
const filteredItems = _.filter(
|