( uuid: string, options: ScriptMenuItemOption | undefined, menus: ScriptMenuItem[], inputValue?: any )
| 42 | const CollapseItem = Collapse.Item; |
| 43 | |
| 44 | const sendMenuAction = ( |
| 45 | uuid: string, |
| 46 | options: ScriptMenuItemOption | undefined, |
| 47 | menus: ScriptMenuItem[], |
| 48 | inputValue?: any |
| 49 | ) => { |
| 50 | popupClient.menuClick(uuid, menus, inputValue).then(() => { |
| 51 | options?.autoClose !== false && window.close(); |
| 52 | }); |
| 53 | }; |
| 54 | |
| 55 | const FormItem = Form.Item; |
| 56 |
no test coverage detected