Skip to content

Commit

Permalink
Disable timeline
Browse files Browse the repository at this point in the history
  • Loading branch information
bonustrack committed Apr 28, 2021
1 parent b100126 commit f66bf7b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@
<div class="text-center mb-4 mx-auto">
<Container class="d-flex flex-items-center">
<div class="flex-auto text-left d-flex">
<!--
<router-link :to="{ name: 'timeline' }" class="mr-2">
<UiButton class="no-wrap px-3">
<Icon name="feed" size="18" />
<UiCounter :counter="numberOfUnseenProposals" class="ml-2" />
</UiButton>
</router-link>
-->
<UiButton class="pl-3 col-12 col-lg-4">
<Search v-model="q" :placeholder="$t('searchPlaceholder')" />
</UiButton>
Expand Down Expand Up @@ -111,8 +113,8 @@ export default {
});
// Get number of unseen proposals
const { getProposalIds, numberOfUnseenProposals } = useUnseenProposals();
watchEffect(() => getProposalIds(favorites.value));
const { numberOfUnseenProposals } = useUnseenProposals();
// watchEffect(() => getProposalIds(favorites.value));
// Favorites
const addFavoriteSpace = spaceId =>
Expand Down

0 comments on commit f66bf7b

Please sign in to comment.