floweditor 修正
This commit is contained in:
@@ -74,8 +74,9 @@ export const useFlowEditorStore = defineStore("flowEditor",{
|
||||
if(actionFlows && actionFlows.length>0){
|
||||
this.selectFlow(actionFlows[0]);
|
||||
}
|
||||
const expandName =actionFlows[0].getRoot()?.title;
|
||||
this.expandedScreen=[expandName];
|
||||
const expandNames = actionFlows.map(flow=>flow.getRoot()?.title);
|
||||
// const expandName =actionFlows[0].getRoot()?.title;
|
||||
this.expandedScreen=expandNames;
|
||||
},
|
||||
/**
|
||||
* フローをDBに保存及び更新する
|
||||
|
||||
Reference in New Issue
Block a user