@truedat/bg 5.14.1 → 5.15.0

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/bg",
3
- "version": "5.14.1",
3
+ "version": "5.15.0",
4
4
  "description": "Truedat Web Business Glossary",
5
5
  "sideEffects": false,
6
6
  "jsnext:main": "src/index.js",
@@ -86,9 +86,9 @@
86
86
  ]
87
87
  },
88
88
  "dependencies": {
89
- "@truedat/core": "5.14.1",
90
- "@truedat/df": "5.14.1",
91
- "@truedat/lm": "5.14.1",
89
+ "@truedat/core": "5.15.0",
90
+ "@truedat/df": "5.15.0",
91
+ "@truedat/lm": "5.15.0",
92
92
  "decode-uri-component": "^0.2.2",
93
93
  "file-saver": "^2.0.5",
94
94
  "moment": "^2.29.4",
@@ -111,5 +111,5 @@
111
111
  "react-dom": ">= 16.8.6 < 17",
112
112
  "semantic-ui-react": ">= 2.0.3 < 2.2"
113
113
  },
114
- "gitHead": "a4ee212708f281ed1bbe15431e6d8731a55f2d29"
114
+ "gitHead": "93bcd66804df32821aa0d563b863774554a39047"
115
115
  }
@@ -196,7 +196,7 @@ export const ConceptRelations = ({
196
196
  </Button>
197
197
  </Button.Group>
198
198
  ) : null}
199
- ,{visible ? <ConceptRelationActions /> : null}
199
+ {visible ? <ConceptRelationActions /> : null}
200
200
  </div>
201
201
 
202
202
  {conceptRelations ? (
@@ -262,6 +262,7 @@ const mapStateToProps = (state) => ({
262
262
  conceptRelations: sortByDirectionAndTag(state.concept)(
263
263
  getConceptToConceptRelations(state)
264
264
  ),
265
+ concept: state.concept,
265
266
  visible: _.prop("status")(state.concept) != "deprecated",
266
267
  relationsLoading: state.relationsLoading,
267
268
  relationsGraph: state.relationsGraph,
@@ -43,9 +43,7 @@ exports[`<ConceptRelations /> matches the latest snapshot 1`] = `
43
43
  </div>
44
44
  <div
45
45
  className="implementation-actions"
46
- >
47
- ,
48
- </div>
46
+ />
49
47
  <Table
50
48
  as="table"
51
49
  selectable={true}