Skip to content

Commit

Permalink
mnav: use exact-path
Browse files Browse the repository at this point in the history
Signed-off-by: Varun Patil <radialapps@gmail.com>
  • Loading branch information
pulsejet committed Oct 30, 2023
1 parent 71d1bba commit 664bbae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/components/MobileNav.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<template>
<div id="mobile-nav">
<router-link to="/" @click.native="linkClick" replace>
<router-link to="/" @click.native="linkClick" replace exact-path>
<ImageMultipleIcon :size="22" />
{{ t('memories', 'Photos') }}
</router-link>

<router-link to="/explore" @click.native="linkClick" replace>
<router-link to="/explore" @click.native="linkClick" replace exact-path>
<SearchIcon :size="22" />
{{ t('memories', 'Explore') }}
</router-link>

<router-link to="/albums" @click.native="linkClick" replace>
<router-link to="/albums" @click.native="linkClick" replace exact-path>
<AlbumIcon :size="22" />
{{ t('memories', 'Albums') }}
</router-link>
Expand Down

0 comments on commit 664bbae

Please sign in to comment.