mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-04 21:25:24 +00:00
Merge branch '9-bug-redirects-to-login' into 'develop'
fixed bug where content of the previous page would show after refresh Closes #9 See merge request bramw/baserow!4
This commit is contained in:
commit
ff9ca7a2b5
3 changed files with 3 additions and 4 deletions
web-frontend
|
@ -80,7 +80,6 @@ import Notifications from '@/components/notifications/Notifications'
|
|||
import GroupsContext from '@/components/group/GroupsContext'
|
||||
|
||||
export default {
|
||||
layout: 'default',
|
||||
middleware: 'authenticated',
|
||||
components: {
|
||||
GroupsContext,
|
||||
|
@ -96,7 +95,7 @@ export default {
|
|||
methods: {
|
||||
logoff() {
|
||||
this.$store.dispatch('auth/logoff')
|
||||
this.$nuxt.$router.replace({ name: 'login' })
|
||||
this.$nuxt.$router.push({ name: 'login' })
|
||||
},
|
||||
...mapActions({
|
||||
toggleCollapsed: 'sidebar/toggleCollapsed'
|
||||
|
|
|
@ -103,7 +103,7 @@ export default {
|
|||
password: this.credentials.password
|
||||
})
|
||||
.then(() => {
|
||||
this.$nuxt.$router.replace({ name: 'app' })
|
||||
this.$nuxt.$router.push({ name: 'app' })
|
||||
})
|
||||
.catch(error => {
|
||||
// If the status code is 400 the provided email or password is incorrect.
|
||||
|
|
|
@ -144,7 +144,7 @@ export default {
|
|||
password: this.account.password
|
||||
})
|
||||
.then(() => {
|
||||
this.$nuxt.$router.replace({ name: 'app' })
|
||||
this.$nuxt.$router.push({ name: 'app' })
|
||||
})
|
||||
.catch(error => {
|
||||
this.error = error.responseError
|
||||
|
|
Loading…
Add table
Reference in a new issue