Browse Source

fix: hide QR code for mldsa65 links (too long for QR generation)

MHSanaei 21 hours ago
parent
commit
1cf2582e6d
1 changed files with 2 additions and 1 deletions
  1. 2 1
      frontend/src/pages/inbounds/QrCodeModal.vue

+ 2 - 1
frontend/src/pages/inbounds/QrCodeModal.vue

@@ -111,7 +111,8 @@ function close() {
     <template v-if="dbInbound">
       <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">
-          <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>
     </template>