@faasjs/ant-design 0.0.3-beta.62 → 0.0.3-beta.63
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1403,7 +1403,7 @@ function Table(props) {
|
|
|
1403
1403
|
}) => /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_antd12.Radio.Group, {
|
|
1404
1404
|
style: { padding: 8 },
|
|
1405
1405
|
buttonStyle: "solid",
|
|
1406
|
-
value: selectedKeys[0],
|
|
1406
|
+
value: JSON.stringify(selectedKeys[0]),
|
|
1407
1407
|
onChange: (e) => {
|
|
1408
1408
|
const Values = {
|
|
1409
1409
|
true: true,
|
package/dist/index.mjs
CHANGED
|
@@ -1410,7 +1410,7 @@ function Table(props) {
|
|
|
1410
1410
|
}) => /* @__PURE__ */ jsxs5(Radio.Group, {
|
|
1411
1411
|
style: { padding: 8 },
|
|
1412
1412
|
buttonStyle: "solid",
|
|
1413
|
-
value: selectedKeys[0],
|
|
1413
|
+
value: JSON.stringify(selectedKeys[0]),
|
|
1414
1414
|
onChange: (e) => {
|
|
1415
1415
|
const Values = {
|
|
1416
1416
|
true: true,
|