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.
2 parents 557020f + 8156d96 commit b8e9812Copy full SHA for b8e9812
src/store/sign.js
@@ -35,12 +35,12 @@ export const useSignStore = defineStore('sign', {
35
this.errors = loadState('libresign', 'errors', [])
36
const pdf = loadState('libresign', 'pdf', [])
37
const file = {
38
- name: loadState('libresign', 'filename'),
+ name: loadState('libresign', 'filename', ''),
39
description: loadState('libresign', 'description', ''),
40
- status: loadState('libresign', 'status'),
41
- statusText: loadState('libresign', 'statusText'),
+ status: loadState('libresign', 'status', ''),
+ statusText: loadState('libresign', 'statusText', ''),
42
url: pdf.url,
43
- nodeId: loadState('libresign', 'nodeId'),
+ nodeId: loadState('libresign', 'nodeId', 0),
44
uuid: loadState('libresign', 'uuid', null),
45
signers: loadState('libresign', 'signers', []),
46
}
0 commit comments