Browse Source

[FixBug][Jsonsplit] When to save process definition, upload task code field #4417 (#5178)

* fix: task page, rename "description" to "desc"

* fix: The default value of field dependence is null.

* fix: frontend compile check

* fix: When create process, the version button is set to unavailable

* fix: sql condition bug

* fix: When to save process definition, upload task code field

Co-authored-by: wen-hemin <wenhemin@apache.com>
pull/3/MERGE
wen-hemin 4 years ago committed by GitHub
parent
commit
15b2b1c0ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.vue

2
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/formModel/formModel.vue

@ -693,6 +693,7 @@
}
// Non-null objects represent backfill
if (!_.isEmpty(o)) {
this.code = o.code
this.name = o.name
this.taskInstancePriority = o.taskInstancePriority
this.runFlag = o.runFlag || 'NORMAL'
@ -766,6 +767,7 @@
return {
type: this.nodeData.taskType,
id: this.nodeData.id,
code: this.code,
name: this.name,
desc: this.desc,
runFlag: this.runFlag,

Loading…
Cancel
Save