You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by so...@apache.org on 2022/03/10 03:31:43 UTC

[dolphinscheduler] branch dev updated: [Fix-8786] [ui] Fixed the "RESOURCE_NOT_EXIST" error message when clicking udF resource list file navigation prompt #8786 (#8788)

This is an automated email from the ASF dual-hosted git repository.

songjian pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 0bce1a9   [Fix-8786] [ui] Fixed the "RESOURCE_NOT_EXIST" error message when clicking udF resource list file navigation prompt #8786  (#8788)
0bce1a9 is described below

commit 0bce1a96a14cf46e9d5852d9778da02cbc1a2560
Author: wangqiang <10...@qq.com>
AuthorDate: Thu Mar 10 11:31:37 2022 +0800

     [Fix-8786] [ui] Fixed the "RESOURCE_NOT_EXIST" error message when clicking udF resource list file navigation prompt #8786  (#8788)
    
    * [fix] [ui] Fixed the re-upload function of the Resource Management menu
    * Modify resource file list and sub-file front-end code
    * Modify udF resource file list and subfile front-end code
    * Fix modified page does not dynamically update content, added V-if judgment
    
    * [fix] [ui] Fixed the re-upload function of the Resource Management menu
    * Modify resource file list and sub-file front-end code
    * Modify udF resource file list and subfile front-end code
    * Fix modified page does not dynamically update content, added V-if judgment
    * Fix duplicate ID problem
    
    * [Fix] [ui] Fixed the "RESOURCE_NOT_EXIST" error message when clicking udF resource list file navigation prompt
    
    Co-authored-by: wangqiang <wa...@coocaa.com>
---
 .../conf/home/pages/resource/pages/udf/pages/subUdfDirectory/index.vue | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/subUdfDirectory/index.vue b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/subUdfDirectory/index.vue
index 654d5fb..6111210 100755
--- a/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/subUdfDirectory/index.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/resource/pages/udf/pages/subUdfDirectory/index.vue
@@ -147,7 +147,8 @@
       transferApi (api) {
         this.getResourceId({
           type: 'UDF',
-          fullName: api
+          fullName: api,
+          id: this.searchParams.id
         }).then(res => {
           localStore.setItem('currentDir', `${res.fullName}`)
           this.$router.push({ path: `/resource/udf/subUdfDirectory/${res.id}` })