We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aada760 commit ed3b081Copy full SHA for ed3b081
app/src/pages/_app_menu.tsx
@@ -477,7 +477,19 @@ export default function AppMenu({ className = "", open = false }: { className?:
477
<Col
478
icon={<BadgeInfo />}
479
onClick={() => {
480
- HelpService.loadHelp();
+ Dialog.show({
481
+ title: "是否加载帮助?",
482
+ content: "加载帮助内容会在您的当前舞台上贴入很多内容,建议清空舞台或新建草稿后再加载帮助。",
483
+ buttons: [
484
+ {
485
+ text: "加载",
486
+ onClick: () => {
487
+ HelpService.loadHelp();
488
+ },
489
490
+ { text: "取消" },
491
+ ],
492
+ });
493
}}
494
>
495
help
0 commit comments