Skip to content

Commit

Permalink
fixes backward navigation error
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanOXDi committed Feb 9, 2024
1 parent a925a60 commit db86ef3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>

<div class="select-resource">
<div v-if="loading">
<div v-if="loading && !loadingMore">
<KCircularLoader />
</div>
<div v-else>
Expand Down Expand Up @@ -370,6 +370,9 @@
focusFirstEl() {
this.$refs.textbox.focus();
},
goBack() {
return this.$router.go(-1);
},
contentLink(content) {
if (this.showBookmarks) {
return this.$route;
Expand Down

0 comments on commit db86ef3

Please sign in to comment.