commit
cb80057f21
1
.github/workflows/prodtag.yml
vendored
1
.github/workflows/prodtag.yml
vendored
|
@ -23,5 +23,6 @@ jobs:
|
|||
- run: cd dist && zip -r ../phanpy-dist.zip . && cd ..
|
||||
- uses: softprops/action-gh-release@v1
|
||||
with:
|
||||
tag_name: ${{ github.ref_name }}
|
||||
generate_release_notes: true
|
||||
files: phanpy-dist.zip
|
||||
|
|
|
@ -223,9 +223,11 @@ function AccountInfo({
|
|||
// On first load, fetch familiar followers, merge to top of results' `value`
|
||||
// Remove dups on every fetch
|
||||
if (firstLoad) {
|
||||
const familiarFollowers = await masto.v1.accounts
|
||||
.familiarFollowers(id)
|
||||
.fetch();
|
||||
const familiarFollowers = await masto.v1.accounts.familiarFollowers.fetch(
|
||||
{
|
||||
id: [id],
|
||||
},
|
||||
);
|
||||
familiarFollowersCache.current = familiarFollowers[0].accounts;
|
||||
newValue = [
|
||||
...familiarFollowersCache.current,
|
||||
|
|
|
@ -128,6 +128,7 @@ function AccountStatuses() {
|
|||
to={`/${instance}/a/${id}`}
|
||||
class="insignificant filter-clear"
|
||||
title="Clear filters"
|
||||
key="clear-filters"
|
||||
>
|
||||
<Icon icon="x" size="l" />
|
||||
</Link>
|
||||
|
|
|
@ -30,6 +30,10 @@
|
|||
|
||||
.ancestors-indicator {
|
||||
font-size: 70% !important;
|
||||
|
||||
& > .avatar:not(:first-child) {
|
||||
margin-left: -4px;
|
||||
}
|
||||
}
|
||||
.ancestors-indicator:not([hidden]) {
|
||||
animation: slide-up 0.3s both ease-out 0.3s;
|
||||
|
|
Loading…
Reference in a new issue