@truedat/qx 6.3.3 → 6.3.5

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/qx",
3
- "version": "6.3.3",
3
+ "version": "6.3.5",
4
4
  "description": "Truedat Web Quality Experience package",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -35,7 +35,7 @@
35
35
  "@testing-library/react": "^12.0.0",
36
36
  "@testing-library/react-hooks": "^8.0.1",
37
37
  "@testing-library/user-event": "^13.2.1",
38
- "@truedat/test": "6.3.3",
38
+ "@truedat/test": "6.3.4",
39
39
  "babel-jest": "^28.1.0",
40
40
  "babel-plugin-dynamic-import-node": "^2.3.3",
41
41
  "babel-plugin-lodash": "^3.3.4",
@@ -84,7 +84,7 @@
84
84
  ]
85
85
  },
86
86
  "dependencies": {
87
- "@truedat/core": "6.3.3",
87
+ "@truedat/core": "6.3.5",
88
88
  "prop-types": "^15.8.1",
89
89
  "react-hook-form": "^7.45.4",
90
90
  "react-intl": "^5.20.10",
@@ -97,5 +97,5 @@
97
97
  "react-dom": ">= 16.8.6 < 17",
98
98
  "semantic-ui-react": ">= 2.0.3 < 2.2"
99
99
  },
100
- "gitHead": "ee40175932833d26f2d0ca297ce5a3a26fb71cb2"
100
+ "gitHead": "2cacdf1fc99746cb4f8dca7d770662c0d96c5bb7"
101
101
  }
@@ -1,11 +1,10 @@
1
1
  import _ from "lodash/fp";
2
- import React, { useEffect } from "react";
2
+ import React from "react";
3
3
  import PropTypes from "prop-types";
4
4
  import { connect } from "react-redux";
5
5
  import { useIntl } from "react-intl";
6
6
  import { useParams } from "react-router-dom";
7
7
  import { Table } from "semantic-ui-react";
8
- import { DateTime } from "@truedat/core/components";
9
8
  import { columnDecorator } from "@truedat/core/services";
10
9
  import { useExecutionGroupsShow } from "../../hooks/useExecutionGroups";
11
10
  import ExecutionGroupMessage from "./ExecutionGroupMessage";
@@ -44,9 +43,9 @@ ExecutionRow.propTypes = {
44
43
  execution: PropTypes.object,
45
44
  };
46
45
 
47
- const isCompleted = _.flow(_.prop("_embedded.status"), (s) =>
48
- _.includes(s)(["SUCCEEDED", "FAILED"])
49
- );
46
+ // const isCompleted = _.flow(_.prop("_embedded.status"), (s) =>
47
+ // _.includes(s)(["SUCCEEDED", "FAILED"])
48
+ // );
50
49
 
51
50
  export const ExecutionGroup = () => {
52
51
  const { formatMessage } = useIntl();
@@ -85,10 +84,4 @@ export const ExecutionGroup = () => {
85
84
  );
86
85
  };
87
86
 
88
- ExecutionGroup.propTypes = {
89
- executionGroup: PropTypes.object,
90
- };
91
-
92
- export const mapStateToProps = ({ executionGroup }) => ({ executionGroup });
93
-
94
- export default connect(mapStateToProps)(ExecutionGroup);
87
+ export default connect(ExecutionGroup);
@@ -40,6 +40,7 @@ export default function QxRoutes() {
40
40
  initialSortDirection: "descending",
41
41
  useSearch: useQualityControlsSearch,
42
42
  useFilters: useQualityControlsFilters,
43
+ userFiltersType: "qx",
43
44
  };
44
45
 
45
46
  return (