fix: overlapping input (#3404)
This commit is contained in:
parent
266b16834b
commit
1163e44265
1 changed files with 17 additions and 11 deletions
|
|
@ -76,19 +76,25 @@
|
||||||
icon="add"
|
icon="add"
|
||||||
></q-btn>
|
></q-btn>
|
||||||
</q-input>
|
</q-input>
|
||||||
<div>
|
|
||||||
<q-chip
|
|
||||||
v-for="identifier in formData.lnbits_nostr_notifications_identifiers"
|
|
||||||
:key="identifier"
|
|
||||||
removable
|
|
||||||
@remove="removeNostrNotificationIdentifier(identifier)"
|
|
||||||
color="primary"
|
|
||||||
text-color="white"
|
|
||||||
><span class="ellipsis" v-text="identifier"></span
|
|
||||||
></q-chip>
|
|
||||||
</div>
|
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
<div>
|
||||||
|
<q-chip
|
||||||
|
v-for="identifier in formData.lnbits_nostr_notifications_identifiers"
|
||||||
|
:key="identifier"
|
||||||
|
removable
|
||||||
|
@remove="removeNostrNotificationIdentifier(identifier)"
|
||||||
|
color="primary"
|
||||||
|
text-color="white"
|
||||||
|
class="ellipsis"
|
||||||
|
:label="identifier"
|
||||||
|
><q-tooltip
|
||||||
|
v-if="identifier"
|
||||||
|
anchor="top middle"
|
||||||
|
self="bottom middle"
|
||||||
|
><span v-text="identifier"></span></q-tooltip
|
||||||
|
></q-chip>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="col-sm-12 col-md-6">
|
<div class="col-sm-12 col-md-6">
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue