Browse Source

Fix rename check parameter

pull/3/MERGE
break60 4 years ago committed by gaojun2048
parent
commit
dacc598a8c
  1. 2
      dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/rename.vue
  2. 2
      dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/rename.vue

2
dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/file/pages/list/_source/rename.vue

@ -71,7 +71,7 @@
})
}else{
return this.store.dispatch('resource/resourceVerifyName', {
fullName: localStore.getItem('currentDir')+'/'+this.name,
fullName: '/'+this.name,
type: 'FILE'
})
}

2
dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/resource/_source/rename.vue

@ -72,7 +72,7 @@
})
}else{
return this.store.dispatch('resource/resourceVerifyName', {
fullName: localStore.getItem('currentDir')+'/'+this.name,
fullName: '/'+this.name,
type: 'UDF'
})
}

Loading…
Cancel
Save