mirror of
https://github.com/lnbits/lnbits.git
synced 2025-09-28 21:02:31 +02:00
fix: prevent overflow on dialog (#3295)
This commit is contained in:
committed by
GitHub
parent
0d2ff2e663
commit
5b9f244a9f
@@ -370,7 +370,12 @@
|
||||
v-if="extras.length"
|
||||
>
|
||||
<template v-for="entry in extras">
|
||||
<q-item v-if="!!entry.value" key="entry.key" class="text-grey-4">
|
||||
<q-item
|
||||
v-if="!!entry.value"
|
||||
key="entry.key"
|
||||
class="text-grey-4"
|
||||
style="white-space: normal; word-break: break-all"
|
||||
>
|
||||
<q-item-section>
|
||||
<q-item-label v-text="entry.key"></q-item-label>
|
||||
<q-item-label caption v-text="entry.value"></q-item-label>
|
||||
|
Reference in New Issue
Block a user