mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 20:43:08 +00:00
Fix showing multiple certificate fingerprints
This commit is contained in:
commit
f86a7f6377
1 changed files with 5 additions and 3 deletions
|
@ -91,9 +91,11 @@
|
|||
<dd>Yes</dd>
|
||||
</template>
|
||||
|
||||
<template v-if="message.whois.certfp">
|
||||
<dt>Certificate:</dt>
|
||||
<dd>{{ message.whois.certfp }}</dd>
|
||||
<template v-if="message.whois.certfps">
|
||||
<template v-for="certfp in message.whois.certfps" :key="certfp">
|
||||
<dt>Certificate:</dt>
|
||||
<dd>{{ certfp }}</dd>
|
||||
</template>
|
||||
</template>
|
||||
|
||||
<template v-if="message.whois.server">
|
||||
|
|
Loading…
Reference in a new issue