this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add menus to view profile image and header

+10
+10
src/components/account-info.jsx
··· 11 11 } from 'preact/hooks'; 12 12 import punycode from 'punycode'; 13 13 14 + import MenuLink from '../components/menu-link'; 14 15 import { api } from '../utils/api'; 15 16 import enhanceContent from '../utils/enhance-content'; 16 17 import getHTMLText from '../utils/getHTMLText'; ··· 582 583 <Icon icon="external" /> 583 584 <span>Go to original profile page</span> 584 585 </MenuItem> 586 + <MenuDivider /> 587 + <MenuLink href={info.avatar} target="_blank"> 588 + <Icon icon="user" /> 589 + <span>View profile image</span> 590 + </MenuLink> 591 + <MenuLink href={info.header} target="_blank"> 592 + <Icon icon="media" /> 593 + <span>View profile header</span> 594 + </MenuLink> 585 595 </Menu2> 586 596 ) : ( 587 597 <AccountBlock