Fix missing ; for 'you'
This commit is contained in:
@@ -3,7 +3,7 @@ using Wino.Core.Domain.Entities.Shared;
|
|||||||
|
|
||||||
namespace Wino.Mail.ViewModels.Data;
|
namespace Wino.Mail.ViewModels.Data;
|
||||||
|
|
||||||
public class AccountContactViewModel: AccountContact
|
public class AccountContactViewModel : AccountContact
|
||||||
{
|
{
|
||||||
public AccountContactViewModel(AccountContact contact)
|
public AccountContactViewModel(AccountContact contact)
|
||||||
{
|
{
|
||||||
@@ -22,7 +22,7 @@ public class AccountContactViewModel: AccountContact
|
|||||||
/// Provides a short name of the contact.
|
/// Provides a short name of the contact.
|
||||||
/// <see cref="ShortDisplayName"/> or "You"
|
/// <see cref="ShortDisplayName"/> or "You"
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public string ShortNameOrYou => IsMe ? Translator.AccountContactNameYou : ShortDisplayName;
|
public string ShortNameOrYou => IsMe ? $"{Translator.AccountContactNameYou};" : ShortDisplayName;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Short display name of the contact.
|
/// Short display name of the contact.
|
||||||
|
|||||||
Reference in New Issue
Block a user