@truedat/bg 4.35.2 → 4.35.6

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [4.35.3] 2021-12-20
4
+
5
+ ### Fixed
6
+
7
+ - [TD-4369] 504 error on /api/data_structure_types call
8
+
3
9
  ## [4.31.1] 2021-10-20
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truedat/bg",
3
- "version": "4.35.2",
3
+ "version": "4.35.6",
4
4
  "description": "Truedat Web Business Glossary",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -81,8 +81,8 @@
81
81
  ]
82
82
  },
83
83
  "dependencies": {
84
- "@truedat/core": "4.35.2",
85
- "@truedat/df": "4.35.2",
84
+ "@truedat/core": "4.35.6",
85
+ "@truedat/df": "4.35.6",
86
86
  "file-saver": "^2.0.5",
87
87
  "moment": "^2.24.0",
88
88
  "path-to-regexp": "^1.7.0",
@@ -102,5 +102,5 @@
102
102
  "react-dom": ">= 16.8.6 < 17",
103
103
  "semantic-ui-react": ">= 0.88.2 < 2.1"
104
104
  },
105
- "gitHead": "2d5ffbb16aaf62db662165ccd8088c65fcb6ec74"
105
+ "gitHead": "f1ef56cbd38f392369f0a1d2c83c0d8bc6b58e60"
106
106
  }
@@ -7,7 +7,7 @@ import {
7
7
  CONCEPT_LINKS_CONCEPTS,
8
8
  CONCEPT_LINKS_CONCEPTS_NEW,
9
9
  CONCEPT_LINKS_STRUCTURES,
10
- CONCEPT_LINKS_STRUCTURES_NEW
10
+ CONCEPT_LINKS_STRUCTURES_NEW,
11
11
  } from "@truedat/core/routes";
12
12
  import ConceptStructureLinks from "./ConceptStructureLinks";
13
13
  import ConceptRelations from "./ConceptRelations";
@@ -34,7 +34,7 @@ export const ConceptRelationsRoutes = ({ conceptLoaded, relationsLoading }) => (
34
34
  render={() =>
35
35
  conceptLoaded ? (
36
36
  <>
37
- <StructureTypesLoader />
37
+ <StructureTypesLoader liteRequest={true} />
38
38
  <ConceptStructureLinks />
39
39
  </>
40
40
  ) : null
@@ -57,12 +57,12 @@ export const ConceptRelationsRoutes = ({ conceptLoaded, relationsLoading }) => (
57
57
 
58
58
  ConceptRelationsRoutes.propTypes = {
59
59
  conceptLoaded: PropTypes.bool,
60
- relationsLoading: PropTypes.bool
60
+ relationsLoading: PropTypes.bool,
61
61
  };
62
62
 
63
63
  const mapStateToProps = ({ concept, relationsLoading }) => ({
64
64
  relationsLoading,
65
- conceptLoaded: !_.isEmpty(concept)
65
+ conceptLoaded: !_.isEmpty(concept),
66
66
  });
67
67
 
68
68
  export default connect(mapStateToProps)(ConceptRelationsRoutes);