mirror of
https://github.com/thelounge/thelounge
synced 2024-11-21 19:43:07 +00:00
Fix showing multiple certificate fingerprints on InspIRCd v4.
This commit is contained in:
parent
3d33ef8083
commit
e44bed1758
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