diff --git a/registry/lib/components/style/custom-navbar/favorites/NavbarFavorites.vue b/registry/lib/components/style/custom-navbar/favorites/NavbarFavorites.vue index b2603f72d..3e2366b96 100644 --- a/registry/lib/components/style/custom-navbar/favorites/NavbarFavorites.vue +++ b/registry/lib/components/style/custom-navbar/favorites/NavbarFavorites.vue @@ -253,7 +253,7 @@ export default Vue.extend({ this.page++ const cards = await this.getCards() this.cards.push(...cards) - this.hasMorePage = cards.length === 0 || this.cards.length < this.folder.count + this.hasMorePage = cards.length !== 0 || this.cards.length < this.folder.count } catch (error) { logError(error) }