Pārlūkot izejas kodu

Fixed selection of tenant value and defalut changed to lower case

break60 4 gadi atpakaļ
vecāks
revīzija
e8d9f5c2dd

+ 5 - 4
dolphinscheduler-ui/src/js/conf/home/pages/dag/_source/udp/udp.vue

@@ -205,12 +205,13 @@
       this.syncDefine = dag.syncDefine
       this.timeout = dag.timeout || 0
       this.checkedTimeout = this.timeout !== 0
-
-      if (dag.tenantId === -1) {
+      this.$nextTick(() => {
+        if (dag.tenantId === -1) {
           this.tenantId = this.store.state.user.userInfo.tenantId
-      } else {
+        } else {
           this.tenantId = dag.tenantId
-      }
+        }
+      })
 
     },
     mounted () {},

+ 1 - 1
dolphinscheduler-ui/src/js/conf/home/store/security/actions.js

@@ -282,7 +282,7 @@ export default {
         const list = res.data
         list.unshift({
           id: -1,
-          tenantName: 'Default'
+          tenantName: 'default'
         })
         state.tenantAllList = list
         resolve(list)