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:
einhornimmond 2024-06-18 10:34:43 +02:00 committed by GitHub
commit befedf9cff
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -229,7 +229,7 @@ describe('Send', () => {
})
it('resets the gradido ID query in route', () => {
expect(routerPushMock).toBeCalledWith('send')
expect(routerPushMock).toBeCalledWith({ path: '/send' })
})
})
})

View File

@ -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