this repo has no description
0
fork

Configure Feed

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

Show instance URL in accounts list

When logged-in, acct doesn't show @instance

+13 -4
+10 -1
src/pages/accounts.jsx
··· 63 63 }} 64 64 /> 65 65 <NameText 66 - account={account.info} 66 + account={ 67 + moreThanOneAccount 68 + ? { 69 + ...account.info, 70 + acct: /@/.test(account.info.acct) 71 + ? account.info.acct 72 + : `${account.info.acct}@${account.instanceURL}`, 73 + } 74 + : account.info 75 + } 67 76 showAcct 68 77 onClick={() => { 69 78 if (isCurrent) {
+3 -3
src/pages/settings.css
··· 31 31 display: flex; 32 32 justify-content: space-between; 33 33 align-items: center; 34 - flex-wrap: wrap; 34 + /* flex-wrap: wrap; */ 35 35 border-bottom: var(--hairline-width) solid var(--outline-color); 36 36 } 37 37 #settings-container section > ul > li .current { ··· 49 49 vertical-align: middle; 50 50 } 51 51 #settings-container section > ul > li > div { 52 - flex-grow: 1; 53 - max-width: 100%; 52 + display: flex; 53 + align-items: center; 54 54 } 55 55 #settings-container section > ul > li > div.actions { 56 56 flex-basis: fit-content;