mirror of
https://github.com/lnbits/lnbits-legend.git
synced 2025-02-22 14:22:55 +01:00
feat: show release page link
This commit is contained in:
parent
f379b784cc
commit
d89128fb93
2 changed files with 14 additions and 3 deletions
|
@ -167,13 +167,23 @@
|
|||
color="primary unelevated mt-lg pt-lg"
|
||||
>Install</q-btn
|
||||
>
|
||||
<a
|
||||
v-if="release.html_url"
|
||||
class="text-secondary float-right"
|
||||
:href="release.html_url"
|
||||
target="_blank"
|
||||
style="color: inherit"
|
||||
>Release Notes</a
|
||||
>
|
||||
</q-card-section>
|
||||
<q-separator></q-separator>
|
||||
|
||||
<div
|
||||
v-if="release.details_html"
|
||||
v-html="release.details_html"
|
||||
></div> </q-card
|
||||
></q-expansion-item>
|
||||
></div>
|
||||
<q-separator></q-separator>
|
||||
</q-card></q-expansion-item
|
||||
>
|
||||
</q-list>
|
||||
</q-card-section>
|
||||
</q-card>
|
||||
|
|
|
@ -354,6 +354,7 @@ class InstallableExtension(BaseModel):
|
|||
source_repo=url,
|
||||
description=e["shortDescription"],
|
||||
details_html=e.get("details"),
|
||||
html_url=e.get("htmlUrl"),
|
||||
)
|
||||
]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue