From b641c729c219e432c953df55811b1bb38fa027b6 Mon Sep 17 00:00:00 2001 From: "maxiaozhe@alicorns.co.jp" Date: Mon, 11 Sep 2023 22:16:14 +0900 Subject: [PATCH] bug fix --- frontend/src/layouts/MainLayout.vue | 8 ++++---- frontend/src/pages/FlowChartTest.vue | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/layouts/MainLayout.vue b/frontend/src/layouts/MainLayout.vue index 984994d..a567a95 100644 --- a/frontend/src/layouts/MainLayout.vue +++ b/frontend/src/layouts/MainLayout.vue @@ -56,10 +56,10 @@ const essentialLinks: EssentialLinkProps[] = [ target:'_self' }, { - title: 'ルールエディター', - caption: 'rule', - icon: 'rule', - link: '/#/ruleEditor', + title: 'フローエディター', + caption: 'flowChart', + icon: 'account_tree', + link: '/#/flowChart', target:'_self' }, { diff --git a/frontend/src/pages/FlowChartTest.vue b/frontend/src/pages/FlowChartTest.vue index cd533d7..f994a0a 100644 --- a/frontend/src/pages/FlowChartTest.vue +++ b/frontend/src/pages/FlowChartTest.vue @@ -28,7 +28,7 @@ import PropertyPanel from 'components/right/PropertyPanel.vue'; const rootNode:RootAction =new RootAction("app.record.create.submit","レコード追加画面","保存するとき"); const actionFlow: ActionFlow = new ActionFlow(rootNode); -const saibanProps:[IActionProperty]=[{ +const saibanProps:IActionProperty[]=[{ component:"InputText", props:{ displayName:"フォーマット", @@ -41,7 +41,7 @@ const saibanProps:[IActionProperty]=[{ props:{ displayName:"採番項目", modelValue:"", - name:"filed", + name:"field", placeholder:"採番項目を選択してください", } }];