Skip to content

Commit d729742

Browse files
committed
fix: relax signer status text in signer item
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent c9da978 commit d729742

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Signers/Signer.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ type SignerViewModel = {
7575
signed?: string | null | boolean | unknown[]
7676
identifyMethods?: Array<{ method: string }>
7777
status?: number
78-
statusText: string
78+
statusText?: string
7979
displayName?: string
8080
signingOrder?: number
8181
}
@@ -117,7 +117,7 @@ const signatureFlow = computed(() => {
117117
const signer = computed<SignerViewModel>(() => props.signer)
118118
119119
const signerName = computed(() => signer.value.displayName || '')
120-
const signerStatusText = computed<string>(() => signer.value.statusText)
120+
const signerStatusText = computed<string>(() => signer.value.statusText || '')
121121
122122
const counterNumber = computed(() => {
123123
const file = filesStore.getFile()

0 commit comments

Comments
 (0)