removed limit for artist feed on full artist feed page

This commit is contained in:
booploops 2021-12-29 06:33:03 -08:00
parent ee4a2e4751
commit f777f832e4

View file

@ -10,7 +10,7 @@
</div> </div>
<div class="well" style="margin-top:0px;"> <div class="well" style="margin-top:0px;">
<template v-if="artistFeed.length > 0"> <template v-if="artistFeed.length > 0">
<mediaitem-list-item v-for="item in artistFeed.limit(6)" :item="item"></mediaitem-list-item> <mediaitem-list-item v-for="item in artistFeed" :item="item"></mediaitem-list-item>
</template> </template>
<template v-else> <template v-else>
<div class="hint-text">No new activity from followed artists</div> <div class="hint-text">No new activity from followed artists</div>