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

kerwin 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 b114d33  [Fix-5738][UI] The cancel button in the pop-up dialog of 
`batch copy` and `batch move`  doesn't work. (#5739)
b114d33 is described below

commit b114d330ac1fa7de27e09cc73c0804a7536f3b28
Author: kyoty <[email protected]>
AuthorDate: Thu Jul 8 18:18:20 2021 +0800

    [Fix-5738][UI] The cancel button in the pop-up dialog of `batch copy` and 
`batch move`  doesn't work. (#5739)
    
    * Update relatedItems.vue
    
    * Update relatedItems.vue
---
 .../projects/pages/definition/pages/list/_source/relatedItems.vue     | 4 ++++
 1 file changed, 4 insertions(+)

diff --git 
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/relatedItems.vue
 
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/relatedItems.vue
index 1cd713b..05defe6 100644
--- 
a/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/relatedItems.vue
+++ 
b/dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/relatedItems.vue
@@ -19,6 +19,7 @@
           ref="popup"
           :ok-text="$t('Confirm')"
           :nameText="$t('Related items')"
+          @close="_close"
           @ok="_ok">
     <template slot="content">
       <div class="create-tenement-model">
@@ -58,6 +59,9 @@
       tmp: Boolean
     },
     methods: {
+      _close () {
+        this.$emit('closeRelatedItems')
+      },
       _ok () {
         if (this._verification()) {
           if (this.tmp) {

Reply via email to