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 c4b5a2b commit 10d77f8Copy full SHA for 10d77f8
1 file changed
src/views/Validation.vue
@@ -160,9 +160,10 @@
160
</NcButton>
161
</template>
162
<template #indicator>
163
- <NcIconSvgWrapper :name="signer.signature_validation.label"
+ <NcIconSvgWrapper v-if="signer.signature_validation"
164
+ :name="signer.signature_validation.label"
165
:path="getIconValidityPath(signer)"
- :style="{color: signer.signature_validation.id === 1? 'green' : 'red'}"
166
+ :style="{color: signer.signature_validation?.id === 1? 'green' : 'red'}"
167
:size="20" />
168
169
</NcListItem>
@@ -175,7 +176,7 @@
175
176
{{ dateFromSqlAnsi(signer.request_sign_date) }}
177
178
- <NcListItem v-if="signer.opened"
179
+ <NcListItem v-if="signer.opened && signer.signature_validation"
180
class="extra"
181
compact
182
:name="t('libresign', 'Signature validation:')">
0 commit comments