mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-05-18 12:05:53 +00:00
fix: hide QR code for mldsa65 links (too long for QR generation)
This commit is contained in:
parent
eacb9f63b0
commit
1cf2582e6d
1 changed files with 2 additions and 1 deletions
|
|
@ -111,7 +111,8 @@ function close() {
|
||||||
<template v-if="dbInbound">
|
<template v-if="dbInbound">
|
||||||
<a-collapse v-model:active-key="activeKeys" ghost class="qr-collapse">
|
<a-collapse v-model:active-key="activeKeys" ghost class="qr-collapse">
|
||||||
<a-collapse-panel v-for="item in qrItems" :key="item.key" :header="item.header">
|
<a-collapse-panel v-for="item in qrItems" :key="item.key" :header="item.header">
|
||||||
<QrPanel :value="item.value" :remark="item.header" :download-name="item.downloadName || ''" />
|
<QrPanel :value="item.value" :remark="item.header" :download-name="item.downloadName || ''"
|
||||||
|
:show-qr="!item.value.includes('mldsa65')" />
|
||||||
</a-collapse-panel>
|
</a-collapse-panel>
|
||||||
</a-collapse>
|
</a-collapse>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue