@visns-studio/visns-components 5.3.13 → 5.3.14
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
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
79
79
|
},
|
|
80
80
|
"name": "@visns-studio/visns-components",
|
|
81
|
-
"version": "5.3.
|
|
81
|
+
"version": "5.3.14",
|
|
82
82
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
83
83
|
"main": "src/index.js",
|
|
84
84
|
"files": [
|
|
@@ -877,6 +877,10 @@ function GenericDetail({
|
|
|
877
877
|
}
|
|
878
878
|
};
|
|
879
879
|
|
|
880
|
+
useEffect(() => {
|
|
881
|
+
console.info(activeTabConfig);
|
|
882
|
+
}, [activeTabConfig]);
|
|
883
|
+
|
|
880
884
|
const renderContent = () => {
|
|
881
885
|
if (subnav && subnav.length > 0) {
|
|
882
886
|
const activeTab = subnav.find((s) => s.show === true);
|
|
@@ -1509,6 +1513,7 @@ function GenericDetail({
|
|
|
1509
1513
|
<span>{formConfig.title}</span>
|
|
1510
1514
|
</div>
|
|
1511
1515
|
<Form
|
|
1516
|
+
key={`form-${activeTabConfig.id}`}
|
|
1512
1517
|
columnId={routeParams[urlParam]}
|
|
1513
1518
|
formSettings={formConfig.form}
|
|
1514
1519
|
formType="update"
|