@truedat/core 7.14.5 → 8.0.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/package.json +3 -3
- package/src/routes.js +3 -0
- package/src/search/SearchContext.js +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/core",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Truedat Web Core",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"module": "src/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@testing-library/jest-dom": "^6.6.3",
|
|
49
49
|
"@testing-library/react": "^16.3.0",
|
|
50
50
|
"@testing-library/user-event": "^14.6.1",
|
|
51
|
-
"@truedat/test": "
|
|
51
|
+
"@truedat/test": "8.0.1",
|
|
52
52
|
"identity-obj-proxy": "^3.0.0",
|
|
53
53
|
"jest": "^29.7.0",
|
|
54
54
|
"redux-saga-test-plan": "^4.0.6"
|
|
@@ -85,5 +85,5 @@
|
|
|
85
85
|
"slate-react": "^0.22.10",
|
|
86
86
|
"swr": "^2.3.3"
|
|
87
87
|
},
|
|
88
|
-
"gitHead": "
|
|
88
|
+
"gitHead": "1d2fb016733a74a116362b4906f7141ca7b20ff0"
|
|
89
89
|
}
|
package/src/routes.js
CHANGED
|
@@ -185,6 +185,8 @@ export const QUALITY_CONTROL_HISTORY =
|
|
|
185
185
|
"/qualityControls/:id/version/:version/history";
|
|
186
186
|
export const QUALITY_CONTROL_SCORES =
|
|
187
187
|
"/qualityControls/:id/version/:version/scores";
|
|
188
|
+
export const QUALITY_CONTROL_EVENTS =
|
|
189
|
+
"/qualityControls/:id/version/:version/events";
|
|
188
190
|
|
|
189
191
|
export const QUALITY_DASHBOARD = "/quality_dashboard";
|
|
190
192
|
export const REFERENCE_DATASET = "/referenceDatasets/:id";
|
|
@@ -423,6 +425,7 @@ const routes = {
|
|
|
423
425
|
QUALITY_CONTROL_EDIT,
|
|
424
426
|
QUALITY_CONTROL_NEW_DRAFT,
|
|
425
427
|
QUALITY_CONTROL,
|
|
428
|
+
QUALITY_CONTROL_EVENTS,
|
|
426
429
|
QUALITY_CONTROL_HISTORY,
|
|
427
430
|
QUALITY_CONTROL_SCORES,
|
|
428
431
|
QUALITY_DASHBOARD,
|
|
@@ -227,7 +227,6 @@ export const SearchContextProvider = (props) => {
|
|
|
227
227
|
must_not: getMustNotFilters(filterMust),
|
|
228
228
|
...enrichSearchPayload,
|
|
229
229
|
};
|
|
230
|
-
console.log("filterParam", filterParam);
|
|
231
230
|
debouncedTriggerSearchFilters(filterParam);
|
|
232
231
|
}, [query, filterMust, enrichSearchPayload]);
|
|
233
232
|
|