Make block & mute lists able to load more

This commit is contained in:
tusooa 2023-02-21 00:39:16 -05:00
commit e516eee479
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
5 changed files with 55 additions and 14 deletions

View file

@ -98,7 +98,7 @@ const withLoadMore = ({
</button>
}
{!this.error && this.loading && <FAIcon spin icon="circle-notch"/>}
{!this.error && !this.loading && !this.bottomedOut && <a onClick={this.fetchEntries}>{this.$t('general.more')}</a>}
{!this.error && !this.loading && !this.bottomedOut && <a onClick={this.fetchEntries} role="button" tabindex="0">{this.$t('general.more')}</a>}
</div>
</div>
)