File tree Expand file tree Collapse file tree
src/frontend/src/components Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ import { ImplementedChange } from 'shared';
88import { datePipe , fullNamePipe } from '../utils/pipes' ;
99import { Link as RouterLink } from 'react-router-dom' ;
1010import { routes } from '../utils/routes' ;
11- import DynamicTooltip from './DynamicTooltip' ;
1211
1312interface ChangesListProps {
1413 changes : ImplementedChange [ ] ;
@@ -57,12 +56,16 @@ const ChangesList: React.FC<ChangesListProps> = ({ changes }) => {
5756 >
5857 #{ ic . changeRequestIdentifier }
5958 </ Link >
60- < DynamicTooltip title = { fullNamePipe ( ic . implementer ) } >
61- < Typography component = "span" sx = { { flexGrow : 1 , wordBreak : 'break-word' } } >
62- { renderDetailWithLinks ( ic . detail ) }
59+ < Typography component = "span" sx = { { wordBreak : 'break-word' } } >
60+ { renderDetailWithLinks ( ic . detail ) }
61+ < Typography component = "span" sx = { { color : 'text.secondary' , ml : 0.75 } } >
62+ — { fullNamePipe ( ic . implementer ) }
6363 </ Typography >
64- </ DynamicTooltip >
65- < Typography variant = "caption" sx = { { color : 'text.secondary' , whiteSpace : 'nowrap' , flexShrink : 0 } } >
64+ </ Typography >
65+ < Typography
66+ variant = "caption"
67+ sx = { { color : 'text.secondary' , whiteSpace : 'nowrap' , flexShrink : 0 , ml : 'auto' } }
68+ >
6669 { datePipe ( ic . dateImplemented ) }
6770 </ Typography >
6871 </ Box >
You can’t perform that action at this time.
0 commit comments