Fix not showing ssh service if no LND

This commit is contained in:
nicolas.dorier 2018-08-13 15:10:59 +09:00
parent 214b2d1c1c
commit ed1827ff28
2 changed files with 39 additions and 42 deletions

View file

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework> <TargetFramework>netcoreapp2.1</TargetFramework>
<Version>1.0.2.90</Version> <Version>1.0.2.91</Version>
<NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn> <NoWarn>NU1701,CA1816,CA1308,CA1810,CA2208</NoWarn>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View file

@ -13,12 +13,10 @@
</div> </div>
<div class="row"> <div class="row">
@if(Model.LNDServices.Count != 0)
{
<div class="col-md-8"> <div class="col-md-8">
<div class="form-group"> <div class="form-group">
<h5>LND nodes</h5> <span>You can get access here to LND-gRPC or SSH services exposed by your server</span>
<span>You can get access to internal LND services here. For gRPC, only BTC is supported.</span>
</div> </div>
<div class="form-group"> <div class="form-group">
@ -55,7 +53,6 @@
</table> </table>
</div> </div>
</div> </div>
}
</div> </div>
@section Scripts { @section Scripts {