@truedat/bg 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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@truedat/bg",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Truedat Web Business Glossary",
|
|
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"
|
|
@@ -81,5 +81,5 @@
|
|
|
81
81
|
"semantic-ui-react": "^3.0.0-beta.2",
|
|
82
82
|
"swr": "^2.3.3"
|
|
83
83
|
},
|
|
84
|
-
"gitHead": "
|
|
84
|
+
"gitHead": "1d2fb016733a74a116362b4906f7141ca7b20ff0"
|
|
85
85
|
}
|
|
@@ -6,6 +6,7 @@ import { Route, Routes } from "react-router";
|
|
|
6
6
|
import { Grid, Segment } from "semantic-ui-react";
|
|
7
7
|
import StructureGrantCart from "@truedat/dd/components/StructureGrantCart";
|
|
8
8
|
import { Comments, CommentsLoader } from "@truedat/core/components";
|
|
9
|
+
// This is only for information purposes, to know the path of the concept version
|
|
9
10
|
import { CONCEPT_VERSION } from "@truedat/core/routes";
|
|
10
11
|
import { useIntl } from "react-intl";
|
|
11
12
|
import { useLanguage } from "@truedat/core/i18n";
|
|
@@ -95,7 +96,7 @@ export const Concept = ({ id, concept }) => {
|
|
|
95
96
|
)(locales);
|
|
96
97
|
|
|
97
98
|
const selectedContent = i18nConcept[selectedLang]?.content || concept.content;
|
|
98
|
-
|
|
99
|
+
|
|
99
100
|
return (
|
|
100
101
|
<>
|
|
101
102
|
<ConceptCrumbs />
|
|
@@ -124,9 +125,9 @@ export const Concept = ({ id, concept }) => {
|
|
|
124
125
|
</Segment>
|
|
125
126
|
<Routes>
|
|
126
127
|
<Route
|
|
127
|
-
path=
|
|
128
|
+
path=""
|
|
128
129
|
element={
|
|
129
|
-
|
|
130
|
+
<Segment>
|
|
130
131
|
<Comments />
|
|
131
132
|
</Segment>
|
|
132
133
|
}
|