@visns-studio/visns-components 5.2.0 → 5.2.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
|
@@ -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.2.
|
|
81
|
+
"version": "5.2.1",
|
|
82
82
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
83
83
|
"main": "src/index.js",
|
|
84
84
|
"files": [
|
|
@@ -337,8 +337,6 @@ function Field({
|
|
|
337
337
|
'radio',
|
|
338
338
|
'radio-ajax',
|
|
339
339
|
'signature',
|
|
340
|
-
'table_radio',
|
|
341
|
-
'table_text',
|
|
342
340
|
'time',
|
|
343
341
|
].includes(settings.type)
|
|
344
342
|
) {
|
|
@@ -383,6 +381,8 @@ function Field({
|
|
|
383
381
|
);
|
|
384
382
|
} else if (['richeditor', 'textarea'].includes(settings.type)) {
|
|
385
383
|
return settings.label;
|
|
384
|
+
} else if (['table_radio', 'table_text'].includes(settings.type)) {
|
|
385
|
+
return null;
|
|
386
386
|
}
|
|
387
387
|
}
|
|
388
388
|
};
|