@truedat/dq 5.2.4 → 5.2.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/CHANGELOG.md +6 -0
- package/package.json +2 -2
- package/src/components/ImplementationsRoutes.js +16 -13
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/dq",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.5",
|
|
4
4
|
"description": "Truedat Web Data Quality Module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"jsnext:main": "src/index.js",
|
|
@@ -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": "
|
|
121
|
+
"gitHead": "c98dc58ea461988def656711e96c17144fc8497a"
|
|
122
122
|
}
|
|
@@ -181,18 +181,20 @@ export const ImplementationsRoutes = ({
|
|
|
181
181
|
path={IMPLEMENTATION_CLONE}
|
|
182
182
|
render={() => (
|
|
183
183
|
<>
|
|
184
|
-
{ruleImplementationLoaded ? (
|
|
185
|
-
<ImplementationStructuresLoader
|
|
186
|
-
structureIds={implementationStructures}
|
|
187
|
-
/>
|
|
188
|
-
) : null}
|
|
189
184
|
{!structuresAliasesLoading &&
|
|
190
185
|
ruleImplementationLoaded &&
|
|
191
186
|
implementationStructuresLoaded ? (
|
|
192
187
|
isRuleImplemenationBasic ? (
|
|
193
188
|
<NewBasicRuleImplementation edition clone />
|
|
194
189
|
) : (
|
|
195
|
-
|
|
190
|
+
<>
|
|
191
|
+
{ruleImplementationLoaded ? (
|
|
192
|
+
<ImplementationStructuresLoader
|
|
193
|
+
structureIds={implementationStructures}
|
|
194
|
+
/>
|
|
195
|
+
) : null}
|
|
196
|
+
<NewRuleImplementation edition clone />
|
|
197
|
+
</>
|
|
196
198
|
)
|
|
197
199
|
) : null}
|
|
198
200
|
</>
|
|
@@ -203,18 +205,19 @@ export const ImplementationsRoutes = ({
|
|
|
203
205
|
path={IMPLEMENTATION_EDIT}
|
|
204
206
|
render={() => (
|
|
205
207
|
<>
|
|
206
|
-
{ruleImplementationLoaded ? (
|
|
207
|
-
<ImplementationStructuresLoader
|
|
208
|
-
structureIds={implementationStructures}
|
|
209
|
-
/>
|
|
210
|
-
) : null}
|
|
211
208
|
{!structuresAliasesLoading &&
|
|
212
|
-
ruleImplementationLoaded &&
|
|
213
209
|
implementationStructuresLoaded ? (
|
|
214
210
|
isRuleImplemenationBasic ? (
|
|
215
211
|
<NewBasicRuleImplementation edition />
|
|
216
212
|
) : (
|
|
217
|
-
|
|
213
|
+
<>
|
|
214
|
+
{ruleImplementationLoaded ? (
|
|
215
|
+
<ImplementationStructuresLoader
|
|
216
|
+
structureIds={implementationStructures}
|
|
217
|
+
/>
|
|
218
|
+
) : null}
|
|
219
|
+
<NewRuleImplementation edition />
|
|
220
|
+
</>
|
|
218
221
|
)
|
|
219
222
|
) : null}
|
|
220
223
|
</>
|