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

samhxwu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/yunikorn-web.git


The following commit(s) were added to refs/heads/master by this push:
     new c75c03c  [YUNIKORN-2191] Remove partition column in Nodes page (#149)
c75c03c is described below

commit c75c03c513dd766b312dd1841db36e0c6903b397
Author: targetoee <107598572+target...@users.noreply.github.com>
AuthorDate: Mon Nov 27 16:12:25 2023 +0800

    [YUNIKORN-2191] Remove partition column in Nodes page (#149)
    
    * remove partition name
    
    * remove unused console.log
    
    Closes: #149
    
    Signed-off-by: Hsuan Zong Wu <samh...@apache.org>
---
 src/app/components/nodes-view/nodes-view.component.ts | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/app/components/nodes-view/nodes-view.component.ts 
b/src/app/components/nodes-view/nodes-view.component.ts
index e7dffd8..eb139d5 100644
--- a/src/app/components/nodes-view/nodes-view.component.ts
+++ b/src/app/components/nodes-view/nodes-view.component.ts
@@ -66,7 +66,6 @@ export class NodesViewComponent implements OnInit {
       { colId: 'nodeId', colName: 'Node ID' },
       { colId: 'rackName', colName: 'Rack Name' },
       { colId: 'hostName', colName: 'Host Name' },
-      { colId: 'partitionName', colName: 'Partition' },
       { colId: 'capacity', colName: 'Capacity', colFormatter: 
CommonUtil.resourceColumnFormatter },
       { colId: 'occupied', colName: 'Used', colFormatter: 
CommonUtil.resourceColumnFormatter },
       {
@@ -137,7 +136,6 @@ export class NodesViewComponent implements OnInit {
       )
       .subscribe((data) => {
         this.nodeDataSource.data = data;
-        console.log(data);
       });
   }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@yunikorn.apache.org
For additional commands, e-mail: issues-h...@yunikorn.apache.org

Reply via email to