Skip to content

Commit

Permalink
🐛 Add trailing slash to quick fix #1064
Browse files Browse the repository at this point in the history
* Add trailing slash to switch-view-buttons on Workspace sidebar. This prevents a bug when later using switch view buttons on Default/Minimal view switchers.
  • Loading branch information
itsmejoeeey committed Jan 16, 2023
1 parent c957ab6 commit 8ec5f30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Workspace/SideBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
</div>
<!-- Show links for switching back to Home / Minimal views -->
<div class="switch-view-buttons">
<router-link to="/home">
<router-link to="/home/">
<IconHome class="view-icon" v-tooltip="$t('alternate-views.default')" />
</router-link>
<router-link to="/minimal">
<router-link to="/minimal/">
<IconMinimalView class="view-icon" v-tooltip="$t('alternate-views.minimal')" />
</router-link>
</div>
Expand Down

0 comments on commit 8ec5f30

Please sign in to comment.