Skip to content

Commit

Permalink
Keep current back link when navigating through the topics folder side…
Browse files Browse the repository at this point in the history
… panel.
  • Loading branch information
rtibbles committed Oct 22, 2023
1 parent e9f5a51 commit 5546795
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
:text="t.title"
class="side-panel-folder-link"
:appearanceOverrides="{ color: $themeTokens.text }"
:to="genContentLinkBackLinkCurrentPage(t.id, false)"
:to="genContentLinkKeepCurrentBackLink(t.id, false)"
/>
</div>
<KButton
Expand Down Expand Up @@ -56,9 +56,9 @@
mixins: [commonLearnStrings, commonCoreStrings],
setup() {
const { windowIsLarge } = useKResponsiveWindow();
const { genContentLinkBackLinkCurrentPage } = useContentLink();
const { genContentLinkKeepCurrentBackLink } = useContentLink();
return {
genContentLinkBackLinkCurrentPage,
genContentLinkKeepCurrentBackLink,
windowIsLarge,
};
},
Expand Down

0 comments on commit 5546795

Please sign in to comment.