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() {
279
279
return
280
280
}
281
281
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
+ })
284
287
})
285
288
})
286
289
.catch ((res : any ) => {
Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ const validate = () => {
245
245
}
246
246
247
247
function onEnd(event ? : any ) {
248
- const { oldIndex, newIndex, clonedData } = event
248
+ const { oldIndex, newIndex } = event
249
249
if (oldIndex === undefined || newIndex === undefined ) return
250
250
const list = cloneDeep (props .nodeModel .properties .node_data .branch )
251
251
if (oldIndex === list .length - 1 || newIndex === list .length - 1 ) {
You can’t perform that action at this time.
0 commit comments