We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a31c16 commit c79618bCopy full SHA for c79618b
web-frontend/modules/database/pages/table.vue
@@ -179,8 +179,10 @@ if (error.value) {
179
}
180
181
if (data.value?.redirect) {
182
- // We have a redirect, we can apply it now
183
- await navigateTo(data.value.redirect.href)
+ // We have a redirect, we can apply it now. Using `replace` so the intermediate
+ // URL (without viewId) doesn't stay in the browser history — otherwise the back
184
+ // button would land on it and immediately redirect forward again.
185
+ await navigateTo(data.value.redirect.href, { replace: true })
186
187
188
/**
0 commit comments