File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed
static/app/components/replays/table Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -503,14 +503,12 @@ export const ReplaySessionColumn: ReplayTableColumn = {
503
503
if ( replay . is_archived ) {
504
504
return (
505
505
< Flex gap = { space ( 1 ) } align = "center" justify = "center" >
506
- < div style = { { paddingInline : space ( 0.5 ) } } >
506
+ < ArchivedWrapper >
507
507
< IconDelete color = "gray500" size = "md" />
508
- </ div >
508
+ </ ArchivedWrapper >
509
509
510
- < Flex direction = "column" gap = { space ( 0.5 ) } >
511
- < Flex gap = { space ( 0.5 ) } align = "center" >
512
- { t ( 'Deleted Replay' ) }
513
- </ Flex >
510
+ < Flex direction = "column" gap = { space ( 0.25 ) } >
511
+ < DisplayName > { t ( 'Deleted Replay' ) } </ DisplayName >
514
512
< Flex gap = { space ( 0.5 ) } align = "center" >
515
513
{ project ? < ProjectAvatar size = { 12 } project = { project } /> : null }
516
514
< SmallFont > { getShortEventId ( replay . id ) } </ SmallFont >
@@ -615,6 +613,12 @@ export const ReplaySlowestTransactionColumn: ReplayTableColumn = {
615
613
} ,
616
614
} ;
617
615
616
+ const ArchivedWrapper = styled ( Flex ) `
617
+ width: ${ p => p . theme . space [ '2xl' ] } ;
618
+ align-items: center;
619
+ justify-content: center;
620
+ ` ;
621
+
618
622
const DetailsLink = styled ( Link ) `
619
623
z-index: 1;
620
624
margin: -${ p => p . theme . space . md } ;
@@ -672,7 +676,6 @@ const DisplayName = styled('span')`
672
676
673
677
&:hover {
674
678
color: ${ p => p . theme . textColor } ;
675
- text-decoration: underline;
676
679
}
677
680
` ;
678
681
You can’t perform that action at this time.
0 commit comments