Skip to content

Commit

Permalink
fix: Navigate to an application from a search from another applicatio…
Browse files Browse the repository at this point in the history
…n page
  • Loading branch information
mlyubimov committed May 3, 2024
1 parent 04eb1da commit e454ca5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 0 additions & 1 deletion frontend/src/layouts/AppsLayout.vue
Original file line number Diff line number Diff line change
Expand Up @@ -362,4 +362,3 @@ watch(() => mainFlags.value.connected, (condition) => {
border-radius: 17px
padding: 5px
</style>
src/composables/useLog
6 changes: 6 additions & 0 deletions frontend/src/pages/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,12 @@ watch(() => mainFlags.value.connected, (condition) => {
}
})
watch(() => route.fullPath, (to, from) => {
if (to !== from) {
start()
}
})
onMounted(() => {
start()
})
Expand Down

0 comments on commit e454ca5

Please sign in to comment.