We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0217d81 commit e39e64aCopy full SHA for e39e64a
1 file changed
src/components/RightSidebar/SignTab.vue
@@ -72,20 +72,15 @@ export default {
72
onSigned(data) {
73
this.$router.push({
74
name: this.$route.path.startsWith('/p/') ? 'ValidationFileExternal' : 'ValidationFile',
75
- params: {
76
- uuid: data.signRequestUuid,
77
- isAfterSigned: true,
78
- },
+ params: { uuid: data.signRequestUuid },
+ state: { isAfterSigned: true },
79
})
80
},
81
onSigningStarted(payload) {
82
83
84
85
- uuid: payload.signRequestUuid,
86
- isAfterSigned: false,
87
- isAsync: true,
88
+ params: { uuid: payload.signRequestUuid },
+ state: { isAfterSigned: false, isAsync: true },
89
90
91
0 commit comments