this repo has no description
0
fork

Configure Feed

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

Merge pull request #267 from cheeaun/main

Update from main

authored by

Chee Aun and committed by
GitHub
cb80057f bf6ee572

+11 -3
+1
.github/workflows/prodtag.yml
··· 23 23 - run: cd dist && zip -r ../phanpy-dist.zip . && cd .. 24 24 - uses: softprops/action-gh-release@v1 25 25 with: 26 + tag_name: ${{ github.ref_name }} 26 27 generate_release_notes: true 27 28 files: phanpy-dist.zip
+5 -3
src/components/account-info.jsx
··· 223 223 // On first load, fetch familiar followers, merge to top of results' `value` 224 224 // Remove dups on every fetch 225 225 if (firstLoad) { 226 - const familiarFollowers = await masto.v1.accounts 227 - .familiarFollowers(id) 228 - .fetch(); 226 + const familiarFollowers = await masto.v1.accounts.familiarFollowers.fetch( 227 + { 228 + id: [id], 229 + }, 230 + ); 229 231 familiarFollowersCache.current = familiarFollowers[0].accounts; 230 232 newValue = [ 231 233 ...familiarFollowersCache.current,
+1
src/pages/account-statuses.jsx
··· 128 128 to={`/${instance}/a/${id}`} 129 129 class="insignificant filter-clear" 130 130 title="Clear filters" 131 + key="clear-filters" 131 132 > 132 133 <Icon icon="x" size="l" /> 133 134 </Link>
+4
src/pages/status.css
··· 30 30 31 31 .ancestors-indicator { 32 32 font-size: 70% !important; 33 + 34 + & > .avatar:not(:first-child) { 35 + margin-left: -4px; 36 + } 33 37 } 34 38 .ancestors-indicator:not([hidden]) { 35 39 animation: slide-up 0.3s both ease-out 0.3s;