Skip to content

Commit 417feee

Browse files
committed
#4217 added name in line
1 parent 2ec4777 commit 417feee

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

src/frontend/src/components/ChangesList.tsx

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { ImplementedChange } from 'shared';
88
import { datePipe, fullNamePipe } from '../utils/pipes';
99
import { Link as RouterLink } from 'react-router-dom';
1010
import { routes } from '../utils/routes';
11-
import DynamicTooltip from './DynamicTooltip';
1211

1312
interface 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>

0 commit comments

Comments
 (0)