Skip to content

Commit 46d59fb

Browse files
fix(sign-pdf): use history.state instead of route params for async signing
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 2c6b3e2 commit 46d59fb

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

src/views/SignPDF/SignPDF.vue

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -349,11 +349,8 @@ export default {
349349
if (targetUuid) {
350350
this.$router.push({
351351
name: targetRoute,
352-
params: {
353-
uuid: targetUuid,
354-
isAfterSigned: false,
355-
isAsync: true,
356-
},
352+
params: { uuid: targetUuid },
353+
state: { isAfterSigned: false, isAsync: true },
357354
})
358355
return true
359356
}

0 commit comments

Comments
 (0)