@@ -569,9 +569,10 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
569
569
override fun isCenterAlignment () = true
570
570
571
571
override fun getTableCellRendererComponent (table : JTable ? , value : Any? , selected : Boolean , focus : Boolean , row : Int , column : Int ): Component {
572
- return super .getTableCellRendererComponent(table, value, selected, focus, row, column).apply {
572
+ super .getTableCellRendererComponent(table, value, selected, focus, row, column).apply {
573
573
border = JBUI .Borders .empty(10 , 10 )
574
574
}
575
+ return this
575
576
}
576
577
}
577
578
}
@@ -590,6 +591,7 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
590
591
text = value
591
592
}
592
593
font = JBFont .h3().asBold()
594
+ border = JBUI .Borders .empty()
593
595
return this
594
596
}
595
597
}
@@ -609,6 +611,7 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
609
611
text = value
610
612
}
611
613
font = JBFont .h3()
614
+ border = JBUI .Borders .empty()
612
615
return this
613
616
}
614
617
}
@@ -628,6 +631,7 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
628
631
text = value
629
632
}
630
633
font = JBFont .h3()
634
+ border = JBUI .Borders .empty()
631
635
return this
632
636
}
633
637
}
@@ -647,6 +651,7 @@ class CoderWorkspacesStepView(val enableNextButtonCallback: (Boolean) -> Unit) :
647
651
text = value
648
652
}
649
653
font = JBFont .h3()
654
+ border = JBUI .Borders .empty()
650
655
foreground = (table.model as ListTableModel <WorkspaceAgentModel >).getRowValue(row).statusColor()
651
656
return this
652
657
}
0 commit comments