File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
views/application-workflow
workflow/nodes/condition-node Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -279,8 +279,11 @@ async function publicHandle() {
279279 return
280280 }
281281 applicationApi .putPublishApplication (id as String , obj , loading ).then (() => {
282- MsgSuccess (t (' views.applicationWorkflow.tip.publicSuccess' ))
283- getDetail ()
282+
283+ application .asyncGetApplicationDetail (id , loading ).then ((res : any ) => {
284+ detail .value .name = res .data .name
285+ MsgSuccess (t (' views.applicationWorkflow.tip.publicSuccess' ))
286+ })
284287 })
285288 })
286289 .catch ((res : any ) => {
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ const validate = () => {
245245}
246246
247247function onEnd(event ? : any ) {
248- const { oldIndex, newIndex, clonedData } = event
248+ const { oldIndex, newIndex } = event
249249 if (oldIndex === undefined || newIndex === undefined ) return
250250 const list = cloneDeep (props .nodeModel .properties .node_data .branch )
251251 if (oldIndex === list .length - 1 || newIndex === list .length - 1 ) {
You can’t perform that action at this time.
0 commit comments