1
0
mirror of https://github.com/bitwarden/server synced 2026-01-03 09:03:44 +00:00

update libs

This commit is contained in:
Kyle Spearrin
2018-02-21 22:31:33 -05:00
parent 0b17f3823a
commit 87497a5608
14 changed files with 32 additions and 32 deletions

View File

@@ -14,14 +14,14 @@
<ItemGroup>
<PackageReference Include="jsreport.AspNetCore" Version="1.0.1" />
<PackageReference Include="jsreport.Binary" Version="1.9.2" />
<PackageReference Include="jsreport.Local" Version="1.1.0" />
<PackageReference Include="jsreport.Local" Version="1.1.1" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.2" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.1" />
<PackageReference Include="Microsoft.AspNetCore.AzureAppServices.HostingStartup" Version="2.0.1" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="2.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="2.0.0" />
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="2.1.0" />
<PackageReference Include="IdentityServer4.AccessTokenValidation" Version="2.3.0" />
</ItemGroup>
<ItemGroup>

View File

@@ -59,9 +59,9 @@ namespace Bit.Api.Models
{
Description = item.Description;
}
else if(!string.IsNullOrWhiteSpace(item.Plan?.Name) && item.Quantity.GetValueOrDefault() > 0)
else if(!string.IsNullOrWhiteSpace(item.Plan?.Nickname) && item.Quantity.GetValueOrDefault() > 0)
{
Description = $"{item.Quantity} x {item.Plan.Name}";
Description = $"{item.Quantity} x {item.Plan.Nickname}";
}
else
{