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/21 10:56:56 UTC

[dolphinscheduler] branch dev updated: [Fix][UI Next][V1.0.0-Alpha] User Manage Queue display error (#9060)

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 bae9f16  [Fix][UI Next][V1.0.0-Alpha] User Manage Queue display error (#9060)
bae9f16 is described below

commit bae9f16b6c803bd382310be46b7244356b4a7d48
Author: Devosend <de...@gmail.com>
AuthorDate: Mon Mar 21 18:56:49 2022 +0800

    [Fix][UI Next][V1.0.0-Alpha] User Manage Queue display error (#9060)
---
 .../src/views/security/user-manage/components/use-user-detail.ts        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dolphinscheduler-ui-next/src/views/security/user-manage/components/use-user-detail.ts b/dolphinscheduler-ui-next/src/views/security/user-manage/components/use-user-detail.ts
index d347eba..0aa9fcc 100644
--- a/dolphinscheduler-ui-next/src/views/security/user-manage/components/use-user-detail.ts
+++ b/dolphinscheduler-ui-next/src/views/security/user-manage/components/use-user-detail.ts
@@ -113,7 +113,7 @@ export function useUserDetail() {
     const result = await queryList()
     state.queues = result.map((queue: { queueName: string; id: string }) => ({
       label: queue.queueName,
-      value: queue.id
+      value: queue.queueName
     }))
     if (state.queues.length) {
       initialValues.queue = state.queues[0].value