mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
Merge pull request #1161 from lowdefy/fix-confirm-modal-v4
fix(blocks-antd): Fix confirm modal button icons, closes #1160
This commit is contained in:
commit
77d189196d
@ -70,7 +70,7 @@ const button = (path) => ({
|
||||
},
|
||||
properties: {
|
||||
size: 'small',
|
||||
title: 'button:',
|
||||
title: `${path}:`,
|
||||
inner: true,
|
||||
},
|
||||
blocks: [
|
||||
|
2
packages/docs/templates/test/button.test.js
vendored
2
packages/docs/templates/test/button.test.js
vendored
@ -108,7 +108,7 @@ test('button propertiesFormTransformer', () => {
|
||||
"properties": Object {
|
||||
"inner": true,
|
||||
"size": "small",
|
||||
"title": "button:",
|
||||
"title": "block.properties.field:",
|
||||
},
|
||||
"type": "Card",
|
||||
},
|
||||
|
@ -38,8 +38,32 @@ const ConfirmModal = ({ blockId, events, content, components: { Icon }, methods,
|
||||
className: methods.makeCssClass(properties.modalStyle),
|
||||
closable: properties.closable,
|
||||
okText: properties.okText || 'Ok',
|
||||
okButtonProps: properties.okButton,
|
||||
cancelButtonProps: properties.cancelButton,
|
||||
okButtonProps:
|
||||
properties.okButton && properties.okButton.icon
|
||||
? {
|
||||
...properties.okButton,
|
||||
icon: properties.okButton.icon && (
|
||||
<Icon
|
||||
blockId={`${blockId}_ok_icon`}
|
||||
events={events}
|
||||
properties={properties.okButton.icon}
|
||||
/>
|
||||
),
|
||||
}
|
||||
: properties.okButton,
|
||||
cancelButtonProps:
|
||||
properties.cancelButton && properties.cancelButton.icon
|
||||
? {
|
||||
...properties.cancelButton,
|
||||
icon: properties.cancelButton.icon && (
|
||||
<Icon
|
||||
blockId={`${blockId}_ok_icon`}
|
||||
events={events}
|
||||
properties={properties.cancelButton.icon}
|
||||
/>
|
||||
),
|
||||
}
|
||||
: properties.cancelButton,
|
||||
cancelText: properties.cancelText || 'Cancel',
|
||||
centered: properties.centered || false,
|
||||
mask: properties.mask !== undefined ? properties.mask : true,
|
||||
|
Loading…
x
Reference in New Issue
Block a user