File tree 3 files changed +5
-0
lines changed
client/packages/lowcoder/src/pages
3 files changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,8 @@ export function CopyModal(props: CopyModalProps) {
40
40
okButtonProps = { { disabled : ! copyName } }
41
41
destroyOnClose = { true }
42
42
onCancel = { close }
43
+ showCancelButton
44
+ showOkButton
43
45
onOk = { async ( ) => {
44
46
let dsl = null ;
45
47
await ApplicationApi . getApplicationDetail ( { applicationId : id , type : "editing" } ) . then (
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ function AddGroupUserDialog(props: {
71
71
} }
72
72
okButtonProps = { { loading : confirmLoading } }
73
73
showCancelButton = { false }
74
+ showOkButton
74
75
width = "440px"
75
76
okText = { trans ( "finish" ) }
76
77
onOk = { async ( ) => {
Original file line number Diff line number Diff line change @@ -93,6 +93,8 @@ function CreateModal(props: CreateModalProp) {
93
93
width = "602px"
94
94
title = { trans ( "theme.createTheme" ) }
95
95
open = { modalVisible }
96
+ showOkButton
97
+ showCancelButton
96
98
onOk = { handleOk }
97
99
okButtonProps = { { disabled : ! name || ! selectId } }
98
100
onCancel = { handleCancel }
You can’t perform that action at this time.
0 commit comments