mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
Merge pull request #3322 from gradido/bugfix_error_on_send_link
fix(frontend): link forwarding after using send with url parameters
This commit is contained in:
commit
befedf9cff
@ -229,7 +229,7 @@ describe('Send', () => {
|
||||
})
|
||||
|
||||
it('resets the gradido ID query in route', () => {
|
||||
expect(routerPushMock).toBeCalledWith('send')
|
||||
expect(routerPushMock).toBeCalledWith({ path: '/send' })
|
||||
})
|
||||
})
|
||||
})
|
||||
|
||||
@ -172,7 +172,7 @@ export default {
|
||||
throw new Error(`undefined transactionData.selected : ${this.transactionData.selected}`)
|
||||
}
|
||||
this.loading = false
|
||||
this.$router.push('send')
|
||||
this.$router.push({ path: '/send' })
|
||||
},
|
||||
onBack() {
|
||||
this.currentTransactionStep = TRANSACTION_STEPS.transactionForm
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user