This is an automated email from the ASF dual-hosted git repository.
jinyleechina 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 2227751 [Fix-6228][UI] fix yarn queue dialog bug (#6264)
2227751 is described below
commit 22277517c5a7f27bfa57aff8eadc81dd963c588c
Author: Devosend <[email protected]>
AuthorDate: Wed Sep 22 11:06:15 2021 +0800
[Fix-6228][UI] fix yarn queue dialog bug (#6264)
very good, thanks for your contribution
---
.../src/js/conf/home/pages/security/pages/queue/index.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/queue/index.vue
b/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/queue/index.vue
index 353018e..4e6fc13 100644
--- a/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/queue/index.vue
+++ b/dolphinscheduler-ui/src/js/conf/home/pages/security/pages/queue/index.vue
@@ -22,7 +22,7 @@
<el-button size="mini" @click="_create('')">{{$t('Create
queue')}}</el-button>
<el-dialog
:title="item ? $t('Edit queue') : $t('Create queue')"
- :v-if="createQueueDialog"
+ v-if="createQueueDialog"
:visible.sync="createQueueDialog"
width="auto">
<m-create-queue :item="item" @onUpdate="onUpdate"
@close="close"></m-create-queue>