mirror of
https://github.com/bitwarden/server
synced 2026-01-03 09:03:44 +00:00
update libs
This commit is contained in:
@@ -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>
|
||||
|
||||
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user