@visns-studio/visns-components 4.10.30 → 4.10.31
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
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
78
78
|
},
|
|
79
79
|
"name": "@visns-studio/visns-components",
|
|
80
|
-
"version": "4.10.
|
|
80
|
+
"version": "4.10.31",
|
|
81
81
|
"description": "Various packages to assist in the development of our Custom Applications.",
|
|
82
82
|
"main": "src/index.js",
|
|
83
83
|
"files": [
|
|
@@ -1528,17 +1528,13 @@ function Field({
|
|
|
1528
1528
|
<tr
|
|
1529
1529
|
key={`table-radio-row-${settings.id}-${row.id}`}
|
|
1530
1530
|
>
|
|
1531
|
-
<td
|
|
1532
|
-
style={{
|
|
1533
|
-
whiteSpace: 'nowrap',
|
|
1534
|
-
}}
|
|
1535
|
-
>
|
|
1536
|
-
{row.label}
|
|
1537
|
-
</td>
|
|
1531
|
+
<td>{row.label}</td>
|
|
1538
1532
|
{tableRadioColumns.map((cell, cellKey) => (
|
|
1539
1533
|
<td
|
|
1540
1534
|
key={`table-radio-cell-${settings.id}-${row.id}-${cell.id}-${cellKey}-${rowKey}`}
|
|
1541
1535
|
style={{
|
|
1536
|
+
width: '250px',
|
|
1537
|
+
whiteSpace: 'nowrap',
|
|
1542
1538
|
textAlign:
|
|
1543
1539
|
tableRadioColumns[cellKey]
|
|
1544
1540
|
.type === '' ||
|