Browse Source

[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
2.0.7-release
kyoty 3 years ago committed by GitHub
parent
commit
b114d330ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dolphinscheduler-ui/src/js/conf/home/pages/projects/pages/definition/pages/list/_source/relatedItems.vue

4
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) {

Loading…
Cancel
Save