1
0
mirror of https://github.com/bitwarden/server.git synced 2025-06-30 23:52:50 -05: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

@ -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
{