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 c9da978 commit d729742Copy full SHA for d729742
1 file changed
src/components/Signers/Signer.vue
@@ -75,7 +75,7 @@ type SignerViewModel = {
75
signed?: string | null | boolean | unknown[]
76
identifyMethods?: Array<{ method: string }>
77
status?: number
78
- statusText: string
+ statusText?: string
79
displayName?: string
80
signingOrder?: number
81
}
@@ -117,7 +117,7 @@ const signatureFlow = computed(() => {
117
const signer = computed<SignerViewModel>(() => props.signer)
118
119
const signerName = computed(() => signer.value.displayName || '')
120
-const signerStatusText = computed<string>(() => signer.value.statusText)
+const signerStatusText = computed<string>(() => signer.value.statusText || '')
121
122
const counterNumber = computed(() => {
123
const file = filesStore.getFile()
0 commit comments