You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by wa...@apache.org on 2022/06/30 23:09:28 UTC

[dolphinscheduler] branch dev updated: [Refactor][UI] Refactor cluster manage using NSpace component. (#10701)

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

wanggenhua 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 491d5001fc [Refactor][UI] Refactor cluster manage using NSpace component. (#10701)
491d5001fc is described below

commit 491d5001fcaf4f1e4cd16807375435282ea35aef
Author: songjianet <17...@qq.com>
AuthorDate: Fri Jul 1 07:09:21 2022 +0800

    [Refactor][UI] Refactor cluster manage using NSpace component. (#10701)
    
    * [Refactor][UI] Refactor cluster manage using NSpace component.
    
    * [Refactor][UI] Refactor token manage using NSpace component.
---
 dolphinscheduler-ui/src/views/security/cluster-manage/index.tsx | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/dolphinscheduler-ui/src/views/security/cluster-manage/index.tsx b/dolphinscheduler-ui/src/views/security/cluster-manage/index.tsx
index 0e6a483f17..3838065015 100644
--- a/dolphinscheduler-ui/src/views/security/cluster-manage/index.tsx
+++ b/dolphinscheduler-ui/src/views/security/cluster-manage/index.tsx
@@ -28,7 +28,6 @@ import {
 import { SearchOutlined } from '@vicons/antd'
 import { useI18n } from 'vue-i18n'
 import { useTable } from './use-table'
-import Card from '@/components/card'
 import ClusterModal from './components/cluster-modal'
 
 const clusterManage = defineComponent({
@@ -103,7 +102,7 @@ const clusterManage = defineComponent({
 
     return (
       <NSpace vertical>
-        <NCard>
+        <NCard size='small'>
           <NSpace justify='space-between'>
             <NButton
               size='small'
@@ -132,7 +131,7 @@ const clusterManage = defineComponent({
             </NSpace>
           </NSpace>
         </NCard>
-        <Card>
+        <NCard size='small'>
           <NSpace vertical>
             <NDataTable
               loading={loadingRef}
@@ -154,7 +153,7 @@ const clusterManage = defineComponent({
               />
             </NSpace>
           </NSpace>
-        </Card>
+        </NCard>
         <ClusterModal
           showModalRef={this.showModalRef}
           statusRef={this.statusRef}