@truedat/dq 5.16.2 → 5.16.3

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/dq",
3
- "version": "5.16.2",
3
+ "version": "5.16.3",
4
4
  "description": "Truedat Web Data Quality Module",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -92,8 +92,8 @@
92
92
  },
93
93
  "dependencies": {
94
94
  "@apollo/client": "^3.7.1",
95
- "@truedat/core": "5.15.2",
96
- "@truedat/df": "5.15.2",
95
+ "@truedat/core": "5.16.3",
96
+ "@truedat/df": "5.16.3",
97
97
  "decode-uri-component": "^0.2.2",
98
98
  "graphql": "^15.5.3",
99
99
  "moment": "^2.29.4",
@@ -118,5 +118,5 @@
118
118
  "react-dom": ">= 16.8.6 < 17",
119
119
  "semantic-ui-react": ">= 2.0.3 < 2.2"
120
120
  },
121
- "gitHead": "4f7b257765169d14b8415107ee59d8b76124f829"
121
+ "gitHead": "04f0a731f5a7fb410b71939dcce10e8c5c67c37f"
122
122
  }
@@ -42,11 +42,11 @@ export const RuleImplementationsTable = ({
42
42
 
43
43
  return (
44
44
  <>
45
- {!_.isEmpty(ruleImplementations) && (
45
+ {!_.isEmpty(ruleImplementations) ? (
46
46
  <Table sortable>
47
47
  <Table.Header>
48
48
  <Table.Row>
49
- {executeImplementationsOn && (
49
+ {executeImplementationsOn ? (
50
50
  <Table.HeaderCell textAlign="center">
51
51
  <Checkbox
52
52
  id="selectImplementation"
@@ -54,7 +54,7 @@ export const RuleImplementationsTable = ({
54
54
  checked={checkedAll}
55
55
  />
56
56
  </Table.HeaderCell>
57
- )}
57
+ ) : null}
58
58
  {effectiveColumns
59
59
  ? effectiveColumns.map((column, key) => (
60
60
  <Table.HeaderCell
@@ -99,15 +99,15 @@ export const RuleImplementationsTable = ({
99
99
  ))}
100
100
  </Table.Body>
101
101
  </Table>
102
- )}
103
- {_.isEmpty(ruleImplementations) && !ruleImplementationsLoading && (
102
+ ) : null}
103
+ {_.isEmpty(ruleImplementations) && !ruleImplementationsLoading ? (
104
104
  <Header as="h4">
105
105
  <Icon name="search" />
106
106
  <Header.Content>
107
107
  {formatMessage({ id: "ruleImplementations.search.results.empty" })}
108
108
  </Header.Content>
109
109
  </Header>
110
- )}
110
+ ) : null}
111
111
  </>
112
112
  );
113
113
  };