File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed
Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 7676 word-break : normal;
7777 overflow : hidden;
7878}
79+
80+ .tableRow {
81+ border-bottom : dashed var (--palette-divider );
82+ }
83+
84+ .tableRow : last-child {
85+ border-bottom : none;
86+ }
Original file line number Diff line number Diff line change @@ -571,7 +571,14 @@ export default function ShowExecutions() {
571571 Array . isArray ( failure ) &&
572572 failure . map ( ( item : any ) => {
573573 return (
574- < TableRow key = { item ?. id } sx = { { '&:last-child td, &:last-child th' : { border : 0 } } } >
574+ < TableRow
575+ key = { item ?. id }
576+ sx = { {
577+ '&:last-child td, &:last-child th' : { border : 0 } ,
578+ ':hover' : { backgroundColor : 'var(--palette-action-hover)' } ,
579+ } }
580+ className = { styles . tableRow }
581+ >
575582 < TableCell align = "center" >
576583 < Typography variant = "body2" component = "div" fontFamily = "mabry-bold" >
577584 { item ?. hostname }
@@ -595,7 +602,7 @@ export default function ShowExecutions() {
595602 size = "small"
596603 variant = "outlined"
597604 sx = { {
598- borderRadius : '0% ' ,
605+ borderRadius : '0.2rem ' ,
599606 backgroundColor :
600607 item ?. host_type === 'super' ? 'var( --description-color)' : 'var(--button-color)' ,
601608 color : item ?. host_type === 'super' ? '#FFFFFF' : '#FFFFFF' ,
Original file line number Diff line number Diff line change @@ -193,6 +193,7 @@ export default function Users() {
193193 setAnchorElement ( null ) ;
194194 setUserDetail ( false ) ;
195195 setSwitchUser ( false ) ;
196+ setSelectedRow ( null ) ;
196197 } ;
197198
198199 const handleSubmit = async ( ) => {
You can’t perform that action at this time.
0 commit comments