mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-22 14:22:40 +01:00
LN Settings: Show only node host name (#4927)
This commit is contained in:
parent
920ad67633
commit
a0bb3ace61
2 changed files with 4 additions and 4 deletions
|
@ -18,7 +18,7 @@
|
|||
@if (LightningConnectionString.TryParse(Model.ConnectionString, out var cs))
|
||||
{
|
||||
@typeof(LightningConnectionType).DisplayName(cs.ConnectionType.ToString())
|
||||
<span>(@cs.BaseUri)</span>
|
||||
<span>(@cs.BaseUri.Host)</span>
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
@if (LightningConnectionString.TryParse(Model.ConnectionString, out var cs))
|
||||
{
|
||||
@typeof(LightningConnectionType).DisplayName(cs.ConnectionType.ToString())
|
||||
<span>(@cs.BaseUri)</span>
|
||||
<span>(@cs.BaseUri.Host)</span>
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue