@@ -60,10 +60,10 @@ const {
6060 sortableKeyArray : sortableWsTableColumnKeyArray ,
6161 filterableKeyArray : filterableWsTableColumnKeyArray ,
6262} = defineDataFields ( {
63- name : { label : 'Name' , isFilterable : true , isSortable : true , width : 25 } ,
64- kind : { label : 'Kind' , isFilterable : true , isSortable : true , width : 20 } ,
63+ name : { label : 'Name' , isFilterable : true , isSortable : true , width : 35 } ,
64+ kind : { label : 'Kind' , isFilterable : true , isSortable : true , width : 30 } ,
6565 namespace : { label : 'Namespace' , isFilterable : true , isSortable : true , width : 15 } ,
66- image : { label : 'Image' , isFilterable : true , isSortable : true , width : 25 } ,
66+ image : { label : 'Image' , isFilterable : true , isSortable : true , width : 30 } ,
6767 state : { label : 'State' , isFilterable : true , isSortable : true , width : 15 } ,
6868 gpu : { label : 'GPU' , isFilterable : true , isSortable : true , width : 15 } ,
6969 idleGpu : { label : 'Idle GPU' , isFilterable : true , isSortable : true , width : 15 } ,
@@ -384,7 +384,7 @@ const WorkspaceTable = React.forwardRef<WorkspaceTableRef, WorkspaceTableProps>(
384384 key = "workspace-table-column-name"
385385 sort = { getSortParams ( 'name' ) }
386386 aria-label = "name"
387- modifier = "wrap "
387+ modifier = "nowrap "
388388 >
389389 { wsTableColumns . name . label }
390390 </ Th >
@@ -406,7 +406,7 @@ const WorkspaceTable = React.forwardRef<WorkspaceTableRef, WorkspaceTableProps>(
406406 key = "workspace-table-column-kind"
407407 sort = { getSortParams ( 'kind' ) }
408408 aria-label = "kind"
409- modifier = "wrap "
409+ modifier = "nowrap "
410410 >
411411 { wsTableColumns . kind . label }
412412 </ Th >
@@ -450,7 +450,6 @@ const WorkspaceTable = React.forwardRef<WorkspaceTableRef, WorkspaceTableProps>(
450450 key = "workspace-table-column-idleGpu"
451451 sort = { getSortParams ( 'idleGpu' ) }
452452 aria-label = "idleGpu"
453- modifier = "wrap"
454453 >
455454 { wsTableColumns . idleGpu . label }
456455 </ Th >
@@ -461,7 +460,6 @@ const WorkspaceTable = React.forwardRef<WorkspaceTableRef, WorkspaceTableProps>(
461460 key = "workspace-table-column-lastActivity"
462461 sort = { getSortParams ( 'lastActivity' ) }
463462 aria-label = "lastActivity"
464- modifier = "wrap"
465463 >
466464 { wsTableColumns . lastActivity . label }
467465 </ Th >
0 commit comments